When I am merging TIFF files and have a page with a lot of white in it (or very little text and images), it results in a black page in the final outcome.
Comments: I thought I needed more images but I can reproduce the issue with 'what_the_black_page_should_be.tif' The problem seems to be that System.Drawing is doing something with the image so that ImageMagick cannot properly write it. I will investigate this some more. And thank you for coming back to this issue even though you chose to stick with System.Drawing. You can also use MagickImageCollection to read a multi page tiff: ```C# using (MagickImageCollection images = new MagickImageCollection()) { foreach (string tif in tiffs) { using (MagickImageCollection pages = new MagickImageCollection(tif)) { images.AddRange(pages); } } } ```
Comments: I thought I needed more images but I can reproduce the issue with 'what_the_black_page_should_be.tif' The problem seems to be that System.Drawing is doing something with the image so that ImageMagick cannot properly write it. I will investigate this some more. And thank you for coming back to this issue even though you chose to stick with System.Drawing. You can also use MagickImageCollection to read a multi page tiff: ```C# using (MagickImageCollection images = new MagickImageCollection()) { foreach (string tif in tiffs) { using (MagickImageCollection pages = new MagickImageCollection(tif)) { images.AddRange(pages); } } } ```