Multiframe TIFF, huge memory consumption while genarating Tiff with 100-500 pages. #1873
-
Hi, I’m using Magick.NET and would like to create a multi-frame TIFF file (20–1000 pages) from tiff, jped by processing one image at a time. The goal is to:
Currently, using MagickImageCollection requires loading all images before writing, which increases memory usage significantly, and running out of memory. Is it possible to write each image directly to a multi-page TIFF (page-by-page) using Magick.NET or Magick.Native? Is there any sample for it? Thanks for your help! Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You will need to load all images when you want to write them. You cannot write each page individually. |
Beta Was this translation helpful? Give feedback.
You will need to load all images when you want to write them. You cannot write each page individually.