Search found 168 matches

by pipitas
2014-11-13T08:09:28-07:00
Forum: Users
Topic: Inserting '-write some.jpg' statement into long command line changes final result
Replies: 2
Views: 3552

Re: Inserting '-write some.jpg' statement into long command line changes final result

Never mind: Found out now that I have to use '+write ...' (instead of '-write ...' ) in order to enforce the restoration of each image after it is written... Still not sure what exactly happens when using '-write' though. After all, the IM website says this: The image sequence preceding the -write f...
by pipitas
2014-11-13T07:29:13-07:00
Forum: Users
Topic: Inserting '-write some.jpg' statement into long command line changes final result
Replies: 2
Views: 3552

Inserting '-write some.jpg' statement into long command line changes final result

I'm preparing an ImageMagick workshop aimed to introduce inexperienced IM users to some more advanced techniques. So, I'm trying to demo how one could put '-write intermediate.jpg' in the middle of a long command line in order to... ...inspect intermediate results of the command pipeline; ...help un...
by pipitas
2014-11-12T08:42:19-07:00
Forum: Consulting
Topic: PDF Pages to Lots of PDFs Job
Replies: 1
Views: 10631

Re: PDF Pages to Lots of PDFs Job

There never seems to have been a reaction to this. Is this still current?
by pipitas
2014-11-11T18:54:54-07:00
Forum: Developers
Topic: Feature Request - include -format options in man page
Replies: 1
Views: 3597

Re: Feature Request - include -format options in man page

This is a variant of a similar feature request I had in mind to ask for: Please include a

Code: Select all

convert -list escapes
list -- and the respective output line escapes in

Code: Select all

convert -list list
results.
by pipitas
2012-09-21T06:14:55-07:00
Forum: Users
Topic: convert changes pixel colors unexpectedly
Replies: 3
Views: 5286

convert changes pixel colors unexpectedly

I've come across this question on Stackoverflow.com: "ImageMagick resize: Do really nothing for the 'Only Shrink Larger' case" ( http://stackoverflow.com/questions/12502931/imagemagick-resize-do-really-nothing-for-the-only-shrink-larger-case ) What I'm now wondering about: Why is ImageMagi...
by pipitas
2012-09-09T01:20:24-07:00
Forum: Users
Topic: perspective projection example fails
Replies: 2
Views: 5461

Re: perspective projection example fails

The single quotes must be replace by double quotes. Though I do not understand why convert behaves different on windows ... It is not convert 's different behavior. It's the operating system which behaves differently. Please read this for a better understanding: http://www.imagemagick.org/Usage/win...
by pipitas
2012-08-27T05:41:40-07:00
Forum: Bugs
Topic: JPEG 2000 support broken in latest version?
Replies: 3
Views: 8432

Re: JPEG 2000 support broken in latest version?

I tested it on a Mac OSX Lion with this: identify -version Version: ImageMagick 6.7.9-0 2012-08-17 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC Features: OpenCL HDRI Also a problem with target.jp2 (but with a somewhat different message): identify target.jp...
by pipitas
2012-08-24T05:55:14-07:00
Forum: Users
Topic: General Problem: Gigantic Quantities (with sub problems)
Replies: 9
Views: 12047

Re: General Problem: Gigantic Quantities (with sub problems)

Hello imagemagickians I know I about to ask a lot of question [...] [...]Individuals are thanked already for the time you have taken. THANK YOUUUU philip Honestly I do not yet fully understand the exact requirements you have (other than you want tips to get it done efficiently). But before efficien...
by pipitas
2012-08-23T16:43:51-07:00
Forum: Users
Topic: how to smooth image
Replies: 14
Views: 23448

Re: how to smooth image

Thanks a lot for those command. It's amazing. Much more better then those previous. I applied it on original sized image and then I did resize New version of the castle (original size): http://i45.tinypic.com/20kp114.png Resized version with different palette: http://i45.tinypic.com/4kuwit.jpg If y...
by pipitas
2012-08-23T16:33:11-07:00
Forum: Developers
Topic: ImageMagick Compare
Replies: 32
Views: 56946

Re: ImageMagick Compare

fmw42 wrote:I believe the blue is indicating where the two files are different.
Yes, but then in "repeatedhim" the "him" should be blue too, or?
by pipitas
2012-08-23T15:05:04-07:00
Forum: Developers
Topic: ImageMagick Compare
Replies: 32
Views: 56946

Re: ImageMagick Compare

You really need to test this without you red marker. But try this convert azunh.png \ \( -clone 0 -fill blue -colorize 100 \) \ \( similarity_test-0.png -fuzz 25% -fill black +opaque red -fill white -opaque red -morphology open disk:1.5 \) \ -compose over -composite azunh_diff.png Hmmm... I'm getti...
by pipitas
2012-08-22T04:23:11-07:00
Forum: Users
Topic: Problem with generating reflection
Replies: 11
Views: 16597

Re: Problem with generating reflection

Is there another way to apply gradient fade to the image and maybe I can pipeline multiple steps to crop and combine images? Did you try the command I originally used to test? This one: convert \ pokemon.gif \ \( \ +clone \ -flip \ -fill black \ -colorize 65% \ \) \ -append \ -size 100x100 xc:black...
by pipitas
2012-08-22T03:07:30-07:00
Forum: Users
Topic: Problem with generating reflection
Replies: 11
Views: 16597

Re: Problem with generating reflection

Ok, I can confirm what you see -- the following command does NOT work to create the reflection when using v6.7.9-0 Q16 (it DID work in v6.7.6-9 though): convert \ pokemon.gif \ -alpha on \ \( \ +clone \ -flip \ -size 64x28 \ gradient:gray40-black \ -alpha off \ -compose CopyOpacity \ -composite \ \...
by pipitas
2012-08-22T02:22:07-07:00
Forum: Users
Topic: Problem with generating reflection
Replies: 11
Views: 16597

Re: Problem with generating reflection

Ok, I can confirm what you see -- the following command does NOT work to create the reflection when using v6.7.9-0 Q16 (it DID work in v6.7.6-9 though): convert \ pokemon.gif \ -alpha on \ \( \ +clone \ -flip \ -size 64x28 \ gradient:gray40-black \ -alpha off \ -compose CopyOpacity \ -composite \ \)...
by pipitas
2012-08-22T01:11:47-07:00
Forum: Users
Topic: Processing Subfolders
Replies: 8
Views: 26284

Re: Processing Subfolders

whugemann wrote:Well, the simplest code to perform this job is just
FOR /R %%f IN (*.jpg) DO convert "%%f" -resize 2480x3508 "%%f"
So you think that's simpler than using 'mogrify' with only 1 occurrence of '%%f' ??

I share your hesitation to overwrite files, though. ;-)