简体   繁体   中英

Convert Pdf file pages to Images with itextsharp

I want to convert Pdf pages in Images using ItextSharp lib.

Have any idea how to convert each page in image file

iText/iTextSharp can generate and/or modify existing PDFs but they do not perform any rendering which is what you are looking for. I would recommend checking out Ghostscript or some other library that knows how to actually render a PDF.

you can use ImageMagick convert pdf to image

convert -density 300 "d:\\1.pdf" -scale @1500000 "d:\\a.jpg"

and split pdf can use itextsharp

here is the code from others.

void SplitePDF(string filepath)
    {
        iTextSharp.text.pdf.PdfReader reader = null;
        int currentPage = 1;
        int pageCount = 0;
        //string filepath_New = filepath + "\\PDFDestination\\";

        System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding();
        //byte[] arrayofPassword = encoding.GetBytes(ExistingFilePassword);
        reader = new iTextSharp.text.pdf.PdfReader(filepath);
        reader.RemoveUnusedObjects();
        pageCount = reader.NumberOfPages;
        string ext = System.IO.Path.GetExtension(filepath);
        for (int i = 1; i <= pageCount; i++)
        {
            iTextSharp.text.pdf.PdfReader reader1 = new iTextSharp.text.pdf.PdfReader(filepath);
            string outfile = filepath.Replace((System.IO.Path.GetFileName(filepath)), (System.IO.Path.GetFileName(filepath).Replace(".pdf", "") + "_" + i.ToString()) + ext);
            reader1.RemoveUnusedObjects();
            iTextSharp.text.Document doc = new iTextSharp.text.Document(reader.GetPageSizeWithRotation(currentPage));
            iTextSharp.text.pdf.PdfCopy pdfCpy = new iTextSharp.text.pdf.PdfCopy(doc, new System.IO.FileStream(outfile, System.IO.FileMode.Create));
            doc.Open();
            for (int j = 1; j <= 1; j++)
            {
                iTextSharp.text.pdf.PdfImportedPage page = pdfCpy.GetImportedPage(reader1, currentPage);
                pdfCpy.SetFullCompression();
                pdfCpy.AddPage(page);
                currentPage += 1;
            }
            doc.Close();
            pdfCpy.Close();
            reader1.Close();
            reader.Close();

        }
    }

You can use Ghostscript to convert the PDF files into Images, I used the following parameters to convert the needed PDF into tiff image with multiple frames :

gswin32c.exe   -sDEVICE=tiff12nc -dBATCH -r200 -dNOPAUSE  -sOutputFile=[Output].tiff [PDF FileName]

Also you can use the -q parameter for silent mode You can get more information about its output devices from here

After that I can easily load the tiff frames like the following

using (FileStream stream = new FileStream(@"C:\tEMP\image_$i.tiff", FileMode.Open, FileAccess.Read, FileShare.Read))
{
    BitmapDecoder dec = BitmapDecoder.Create(stream, BitmapCreateOptions.IgnoreImageCache, BitmapCacheOption.None);
    BitmapEncoder enc = BitmapEncoder.Create(dec.CodecInfo.ContainerFormat);
    enc.Frames.Add(dec.Frames[frameIndex]);
}

I did it with MuPDFCore NuGet. Here is the link to guide I used : https://giorgiobianchini.com/MuPDFCore/MuPDFCore.pdf

using System;
using System.Threading.Tasks;
using MuPDFCore;
using VectSharp.Raster;   
      MuPDFContext context = new MuPDFContext();
                    MuPDFDocument document = new MuPDFDocument(context, @"C:\install\test.pdf");
        
             
                    //Renderers: one per page
                    MuPDFMultiThreadedPageRenderer[] renderers = new MuPDFMultiThreadedPageRenderer[document.Pages.Count];
                    //Page size: one per page
                    RoundedSize[] renderedPageSizes = new RoundedSize[document.Pages.Count];
                    //Boundaries of the tiles that make up each page: one array per page, with one element per thread
                    RoundedRectangle[][] tileBounds = new RoundedRectangle[document.Pages.Count][];
                    //Addresses of the memory areas where the image data of the tiles will be stored: one array per page, with  one element per thread
                    IntPtr[][] destinations = new IntPtr[document.Pages.Count][];
                    //Cycle through the pages in the document to initialise everything
                    for (int i = 0; i < document.Pages.Count; i++)
                    {
                        //Initialise the renderer for the current page, using two threads (total number of threads: number of pages x 2
                    renderers[i] = document.GetMultiThreadedRenderer(i, 2);
                        //Determine the boundaries of the page when it is rendered with a 1.5x zoom factor
                        RoundedRectangle roundedBounds = document.Pages[i].Bounds.Round(1);
                        renderedPageSizes[i] = new RoundedSize(roundedBounds.Width*2, roundedBounds.Height*2);
                        //Determine the boundaries of each tile by splitting the total size of the page by the number of  threads.
                        tileBounds[i] = renderedPageSizes[i].Split(renderers[i].ThreadCount);
                        destinations[i] = new IntPtr[renderers[i].ThreadCount];
                        for (int j = 0; j < renderers[i].ThreadCount; j++)
                        {
                            //Allocate the required memory for the j-th tile of the i-th page.
                            //Since we will be rendering with a 24-bit-per-pixel format, the required memory in bytes is height   x width x 3.
                            destinations[i][j] = System.Runtime.InteropServices.Marshal.AllocHGlobal(tileBounds[i][j].Height * tileBounds[i][j].Width * 3);
                        }
                    }
                    //Start the actual rendering operations in parallel.
                    Parallel.For(0, document.Pages.Count, i =>
                    {
                        renderers[i].Render(renderedPageSizes[i], document.Pages[i].Bounds, destinations[i], PixelFormats.RGB);
                    });
                    //The code in this for-loop is not really part of MuPDFCore - it just shows an example of using VectSharp to  "stitch" the tiles up and produce the full image.
        for (int i = 0; i < document.Pages.Count; i++)
                    {
                        //Create a new (empty) image to hold the whole page.
                        VectSharp.Page renderedPage = new VectSharp.Page(renderedPageSizes[i].Width,
                        renderedPageSizes[i].Height);
                        //Draw each tile onto the image.
                        for (int j = 0; j < renderers[i].ThreadCount; j++)
                        {
                            //Create a raster image object containing the pixel data. Yay, we do not need to copy/marshal anything!
                        VectSharp.RasterImage tile = new VectSharp.RasterImage(destinations[i][j], tileBounds[i][j].Width,
                        tileBounds[i][j].Height, false, false);
                            //Draw the tile on the main image page.
                            renderedPage.Graphics.DrawRasterImage(tileBounds[i][j].X0, tileBounds[i][j].Y0, tile);
                            
                        }
                        //Save the full page as a PNG image.
                        renderedPage.SaveAsPNG(@"C:\install\page"+ i.ToString() + ".png");
                    }
                    //Clean-up code.
                    for (int i = 0; i < document.Pages.Count; i++)
                    {
                        //Release the allocated memory.
                        for (int j = 0; j < renderers[i].ThreadCount; j++)
                        {
                            System.Runtime.InteropServices.Marshal.FreeHGlobal(destinations[i][j]);
                        }
                        //Release the renderer (if you skip this, the quiescent renderer’s threads will not be stopped, and your  application will never exit!
                        renderers[i].Dispose();
                    }
                        document.Dispose();
                        context.Dispose();
                    }

you can extract Image from PDF and save as JPG here is the sample code you need Itext Sharp

 public IEnumerable<System.Drawing.Image> ExtractImagesFromPDF(string sourcePdf)
    {
        // NOTE:  This will only get the first image it finds per page.
        var pdf = new PdfReader(sourcePdf);
        var raf = new RandomAccessFileOrArray(sourcePdf);

        try
        {
            for (int pageNum = 1; pageNum <= pdf.NumberOfPages; pageNum++)
            {
                PdfDictionary pg = pdf.GetPageN(pageNum);

                // recursively search pages, forms and groups for images.
                PdfObject obj = ExtractImagesFromPDF_FindImageInPDFDictionary(pg);
                if (obj != null)
                {
                    int XrefIndex = Convert.ToInt32(((PRIndirectReference)obj).Number.ToString(CultureInfo.InvariantCulture));
                    PdfObject pdfObj = pdf.GetPdfObject(XrefIndex);
                    PdfStream pdfStrem = (PdfStream)pdfObj;
                    PdfImageObject pdfImage = new PdfImageObject((PRStream)pdfStrem);
                    System.Drawing.Image img = pdfImage.GetDrawingImage();
                    yield return img;
                }
            }
        }
        finally
        {
            pdf.Close();
            raf.Close();
        }
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM