Page 1 of 1

size limitations proplem

Posted: 2008-06-01T17:42:28-07:00
by ncc1701d
hi,
I recently tryed to append 6 images next to teach other.
However I got this error and no success.
it said
"Convert: Maximum supported image dimension is 65500 pixels"
it is true that..
Iam trying to append images side by side to create a supper wide pic which is over 65500 wide. This final image will never be opened in photoshop or imagemagic or any paint program. (another process i would use rechops/sorts it in a special unique way before anything viewed in a paint program thats why i dont care.)
Can this program or any program out there append images to make this super large image?
I was hoping that only my swapdrive space and ram are my only limits to what i can do not the software limits.
Any ideas? is Imagemagick my answer or something else?
thanks

Re: size limitations proplem

Posted: 2008-06-01T18:23:53-07:00
by fmw42
I will leave a final answer to the IM folks.

Just wondering if this is a Q16 IM build issue? If so, wondering if Q32 IM build might help?????

Of course memory could be the issue, but you may have ruled that out.

Re: size limitations proplem

Posted: 2008-06-01T20:56:01-07:00
by ncc1701d
I belive I am using the 16 version of IM...not sure what the q represents but it is the 16 version I am using.

Re: size limitations proplem

Posted: 2008-06-05T00:10:30-07:00
by anthony
You are hiting the IM built in memory limits! Look at -limit program control option.

Re: size limitations proplem

Posted: 2008-06-05T11:27:51-07:00
by ncc1701d
I have on my hard drive 100gb available space.

when i type: convert -list resource
it says

File: 1536
Area: 2.99704 gb
Memory: 2.24778 gb
Map: 5.99408 gb
disk: 16eb

Does it look like I have room to play with?
I think i would but i dont understand how "file" comes into play into figuring what to change.

I was thinking of modifying my config.xml using MAGICK_MEMORY_LIMIT and MAGICK_MAP_LIMIT. but they dont show example of how to type it in.
They only show this small example below which doesnt apply to my situation.

<configure name="MAGICK_TEMPORARY_PATH" value="/data/tmp"/>

links of interest
http://imagemagick.org/script/resources.php#disk-limit
http://imagemagick.org/source/configure.xml
Thanks for any help anybody on how to change my configure.xml to help my situation.
steve

Re: size limitations proplem

Posted: 2008-06-05T12:04:14-07:00
by magick
Try this:
  • <configure name="MAGICK_MEMORY_LIMIT" value="32MB"/>
    <configure name="MAGICK_MAP_LIMIT" value="64MB"/>
Note this only works in ImageMagick 6.4.1-5 and above.

The file limit is the maximum file descriptors that can be opened simultaneously. This applies when converting huge image sequences of thousands of frames.