Search found 5 matches

by Johndeer
2017-03-09T06:18:06-07:00
Forum: Users
Topic: How to handle tifs over 2 GB?
Replies: 12
Views: 13865

Re: How to handle tifs over 2 GB?

PNG is also limited to 2Gx2G Yes, but I think the file size and the file dimensions have been kinda mixed up here. In theory, the PNG integrer allows files as large as 4.61 Exa-pixels (!) (the 2Gx2G dimension you mentioned) but I'm not sure if there's a proper limit for the file size itself. It see...
by Johndeer
2017-03-08T11:56:25-07:00
Forum: Users
Topic: How to handle tifs over 2 GB?
Replies: 12
Views: 13865

Re: How to handle tifs over 2 GB?

I'm having trouble running this command on some large tifss. It appears to work on the tiffs as long as they are under 2 GB as soon as they go over it stops working. magick "C:\Path\To\Huge.tiff" -page -12 2 -background black -flatten "C:\Path\To\Huge.tiff" Running it on the hug...
by Johndeer
2017-03-08T09:27:13-07:00
Forum: Users
Topic: What does the -define jpeg:size option concretely do?
Replies: 6
Views: 8244

Re: What does the -define jpeg:size option concretely do?

For JPEG, the size option (or jpeg:size option) provides a hint to the JPEG decoder that it can reduce the size on-the-fly during decoding. This saves memory because it never has to allocate memory for the full-sized image (assuming the "size" is smaller than the original dimensions!). Hi...
by Johndeer
2017-02-26T12:52:41-07:00
Forum: Users
Topic: What does the -define jpeg:size option concretely do?
Replies: 6
Views: 8244

Re: What does the -size option concretely do?

-size specifies the size of some new image that you want to create such as for a gradient or a constant color convert -size 100x100 xc:red result.png convert -size 100x100 gradient: result.png For reading JPEG images you need -define jpeg:size See http://www.imagemagick.org/Usage/formats/#jpg_read ...
by Johndeer
2017-02-26T12:30:16-07:00
Forum: Users
Topic: What does the -define jpeg:size option concretely do?
Replies: 6
Views: 8244

What does the -define jpeg:size option concretely do?

Hi, After browsing the FAQ and this forum, I read that the -size option "causes ImageMagick to only store JPEG thumbnails in memory while its generating the montage layout. Without this option, the entire image is temporarily stored in memory until the montage page is generated." I can't w...