Page 1 of 1

Maximum size of image

Posted: 2013-11-29T03:31:21-07:00
by prateek2k10
Hi

I want to create 129600 in width and 1656 in height size image,
Is that imagemagick is so much capable to create that much size text image.
Please tell me the configuration of linux server needed to create that image.
Is there any limitations of sizes.

Thanks
Prateek

Re: Maximum size of image

Posted: 2013-11-29T03:52:11-07:00
by prateek2k10
these sizes are in pixels

Re: Maximum size of image

Posted: 2013-11-29T04:38:32-07:00
by snibgo
That number of pixels needs about 2 GB, so merely creating the image needs that much memory.

Code: Select all

convert -size 129600x1656 huge.png
I don't know about Unix. My old 4 GB Windows laptop doesn't have enough free RAM (because I'm also doing other stuff), so it uses disk and takes 5 minutes.

If you are also doing processing you will need memory for both input and output. But if you use Q8 instead of Q16 you can halve the memory requirement.

Re: Maximum size of image

Posted: 2013-11-29T11:08:58-07:00
by fmw42