Page 1 of 1

Really large images...

Posted: 2019-01-17T12:46:19-07:00
by matt1008
I have an image that is 24,000 x 48,000 that requires 4GB when opened in my C#/64 application. The image creation fails because C# has a 2GB object limit. I'm looking into a work-around solution. Possible running a command line app to break up the image into smaller chunks. Has anyone use ImageMagick command line with a massive image? My images are coming from Drones. Thanks!

Re: Really large images...

Posted: 2019-01-18T05:13:21-07:00
by magick
ImageMagick can read, process, or write mega-, giga-, or tera-pixel image sizes. See https://imagemagick.org/script/architec ... tera-pixel. That of course does not mean you could then host the entire image in memory with Magick.NET. To avoid exceeding memory limits, you could downsize the image by resizing. You could also cache the image on disk, memory-map a portion of the image to display, and scroll the image up/down/left/right to view it in its entirety.

Re: Really large images...

Posted: 2019-01-18T05:27:58-07:00
by dlemstra
Could you open an issue on with a code sample Github and share an image that I can use to reproduce your issue?