Search found 42 matches

by Elapido
2011-06-24T13:14:10-07:00
Forum: Users
Topic: Display histogram
Replies: 11
Views: 40052

Re: Display histogram

It's working here :)

I don't want to bother you, but you could save me some time investigating how to:

-give it a blue tone
-save it as a png with partial transparency

Much appreciated.
by Elapido
2011-06-24T03:42:16-07:00
Forum: Users
Topic: Display histogram
Replies: 11
Views: 40052

Re: Display histogram

Can I generate the histogram and invert its colors or give it a blueish tone with just one command? I'm using this command as part of an AutoHotkey script:

runwait, %comspec% /c d:\Imagemagick\convert %imageo% -separate -append -define histogram:unique-colors=false histogram:histogram1o.jpg ,,hide
by Elapido
2011-06-23T16:22:49-07:00
Forum: Users
Topic: Display histogram
Replies: 11
Views: 40052

Re: Display histogram

Great!
by Elapido
2011-06-23T13:40:12-07:00
Forum: Users
Topic: Display histogram
Replies: 11
Views: 40052

Display histogram

Is able Imagemagick to display information about the levels of an image? What would be amazing is displaying a graphic histogram...
by Elapido
2011-06-23T02:56:05-07:00
Forum: Users
Topic: Problem with level correction
Replies: 2
Views: 5938

Re: Problem with level correction

Excellent. I'll try and see. Thanx! ;)
by Elapido
2011-06-22T14:10:43-07:00
Forum: Users
Topic: Problem with level correction
Replies: 2
Views: 5938

Problem with level correction

Hi. I'm using mogrify -auto-level to make corrections to a series of images, something that I normaly do manually with Photoshop. I use levels adjust to move the selectors of the histogram to coincide with the beginning and end of the graph so that the darker tone is black or almost black and the br...
by Elapido
2011-06-12T06:51:47-07:00
Forum: Users
Topic: Output to clipboard
Replies: 10
Views: 24781

Re: Output to clipboard

I understand, but autohotkey doesn't understand it when doing calculations.
by Elapido
2011-06-12T00:32:45-07:00
Forum: Users
Topic: Run hidden
Replies: 3
Views: 8471

Re: Run hidden

OK, I've already fixed the problem. I forgot a ',' before the hide option in Autohotkey to hide the screen. Thanx, anyway ;)
by Elapido
2011-06-11T23:29:47-07:00
Forum: Users
Topic: Output to clipboard
Replies: 10
Views: 24781

Re: Output to clipboard

How do I get the output in decimal format? With large images I get something like: 1e+006

Thank for the replies.
by Elapido
2011-06-11T15:43:38-07:00
Forum: Users
Topic: Output to clipboard
Replies: 10
Views: 24781

Output to clipboard

Can I run identify -format to output the result to the clipboard?

Also, can I use this command to get the area in pixels of the image? I can get something like '640x480', but I'd like: 307200. Is it possible?
by Elapido
2011-06-11T15:41:20-07:00
Forum: Users
Topic: Run hidden
Replies: 3
Views: 8471

Run hidden

Is there any way I can run a command in hidden mode? I'm using it from Autohotkey and there's no way to hide the command promt screen.
by Elapido
2011-06-10T23:49:30-07:00
Forum: Users
Topic: Resize to area, but not if images are smaller
Replies: 1
Views: 4291

Resize to area, but not if images are smaller

Hi. I have written this command to resize, correct levels and rename all the files in the pics1 folder to the pics2 folder. convert pics1\*.jpg -resize 3000000@ -auto-level -quality 95 -set filename:f %f pics2\z_%[filename:f] The resizing is based on a fixed megapixels data. What I'd like to know is...