Geometry: 15360x8640+0+0
Resolution: 300x300
Depth: 8-bit
Pixels: 132710400
I initially tried with this command:
Code: Select all
convert /tmp/16MB-test.jpg -quality 95 -sampling-factor 4:2:2 -background white -flatten -resize 960 /tmp/960x960/16MB-test-preview.jpg
Code: Select all
convert /tmp/16MB-test.jpg -limit memory 256MB -limit map 512MB -limit disk 500MB -quality 95 -sampling-factor 4:2:2 -background white -flatten -resize 960 /tmp/960x960/16MB-test-preview.jpg
convert /tmp/16MB-test.jpg -limit memory 512MB -limit map 1GB -limit disk 500MB -quality 95 -sampling-factor 4:2:2 -background white -flatten -resize 960 /tmp/960x960/16MB-test-preview.jpg
Can anyone suggest in achieving max out of this limitation? Thanks