I dont know if this is a bug - so I want to ask the developers here...
I have a strange behavour using ImageMagick convert.exe:
I tried 3 different methods to convert from TIF to PDF:
Source-File ist a scanned TIF-image/Color/300 dpi
Code: Select all
1. convert.exe in.TIF out1.PDF
2. convert.exe in.TIF PS:- | convert.exe - out2.PDF
3. convert.exe in.TIF out3.PS && convert.exe out3.PS out3.PDF && del out3.PS
Code: Select all
1. 3167 KB (100 %)
2. 1106 KB ( 35 %)
3. 857 KB ( 27 %)
1. So the third method generates a 3.7 times smaller output. The quality is lower as in the fist test, but not as much as the space saved I think.
2. The second and third test take much longer as the first.
3. Why are the second and third test different? The only difference is that I'm using pipes instead an temporarly file.
Any Ideas why this happens?
Thanks
Florian Lagg
http://www.lagg.at
btw: I searched the forum - but it's not easy to search because "PDF" is not searchable here. Kindly sorry me if there is a double-posting. Just point me there. Thx.