Search found 4 matches
- 2011-12-07T10:05:49-07:00
- Forum: Bugs
- Topic: some converts never finish
- Replies: 6
- Views: 13599
Re: some converts never finish
It seems this helps!! At least I could run the script more than 20'000 times without making convert to hang. Great, thanks you a lot!
- 2011-12-06T16:29:10-07:00
- Forum: Bugs
- Topic: some converts never finish
- Replies: 6
- Views: 13599
Re: some converts never finish
Ok, this small script: #!/bin/bash i=0 while true do let "i=i+1" echo $i > log.txt convert -strip -thumbnail x450 -compress JPEG -colorspace RGB -append ./line1.tiff ./line2.tiff ./line3.tiff ./3160.med.jpg done combines always the SAME three images to a destination image. i counts how many times ...
- 2011-12-06T14:49:51-07:00
- Forum: Bugs
- Topic: some converts never finish
- Replies: 6
- Views: 13599
Re: some converts never finish
Thanks for your fast replay! My problem is that it does not depend on the image I convert. If I kill the process that hangs and repeat the same convert job with same parameters and same image files even with the same destination file it will not hang again. So It's not possible to isolate a single ...
- 2011-12-06T13:54:52-07:00
- Forum: Bugs
- Topic: some converts never finish
- Replies: 6
- Views: 13599
some converts never finish
I'm using the latest ImageMagick from MacPorts (ImageMagick 6.7.1-0 2011-07-16 Q16). I use the convert command to make thumbnails. All is fine, except this: Maybe every 1000th or even 100th convert command never finish. The process sticks with a lot of cpu power and will never finish. The convert ...