After upgrading ImageMagick from version 6.7.2.6 to last version, I cannot resize large TIFF files (> 30Mb) because ImageMagick crash.
The command used is:
convert file.tif -resize 1800x1800 file.png
I checked several versions of ImageMagick, the last working is 6.7.2.6 (wich is the last with LIBTIFF 3.95.2)
I think the problem is caused by LIBTIFF 4.0.0beta7
If You need TIFF files I can share it
My system is Windows 7 32 bit Enterprise with 2Gb RAm, I installed ImageMagick-6.7.3-4-Q16-windows-dll.exe
Thanks
Alexander
Crash when resizing large TIFF files
-
- Posts: 2
- Joined: 2011-11-06T05:32:13-07:00
- Authentication code: 8675308
Re: Crash when resizing large TIFF files
Try this command:
- convert -limit memory 0 -limit map 0 file.tif -resize 1800x1800 file.png
-
- Posts: 2
- Joined: 2011-11-06T05:32:13-07:00
- Authentication code: 8675308
Re: Crash when resizing large TIFF files
Thanks, it works!
I use only -limit memory 0
If I use both -limit memory 0 and -limit map 0 the processing time is much much slower (34s instead of 4s)
Alexander
I use only -limit memory 0
If I use both -limit memory 0 and -limit map 0 the processing time is much much slower (34s instead of 4s)
Alexander