Quantcast
Viewing all articles
Browse latest Browse all 3693

New Post: Single and Multipage TIFFs to SINGLE PDF

If you want to read a multi-page tiff you should create a MagickImageCollection instead and just write it to a PDF file.
using (MagickImageCollection pages = new MagickImageCollection("input.tiff"))
{
  pages.Write("output.pdf");
}

Viewing all articles
Browse latest Browse all 3693

Trending Articles