Search found 2 matches

by isoyaboy
2014-04-17T03:49:24-07:00
Forum: Developers
Topic: ImageMagick with iPhone
Replies: 1
Views: 4588

Re: ImageMagick with iPhone

Just adding to the above.

The code above will produce the correct image on iOS 7.0.6, but for all other iOS versions it will produce a file, but when trying to open the file I am prompted with an image corrupted message.
by isoyaboy
2014-04-17T03:42:58-07:00
Forum: Developers
Topic: ImageMagick with iPhone
Replies: 1
Views: 4588

ImageMagick with iPhone

Hi I have been trying to figure out how to convert jpg to tiff on an iPhone for 3 days. The following command gives me the desired results. convert input.JPG -strip -density 200 -resize 1000x486\! -define tiff:rows-per-strip=1 -compress Group4 output.tif I have tried the following code and it works ...