ItextSharp with PowerShell Merging Tiff and PDF to 1 large PDF

我们两清 提交于 2019-12-02 04:30:59
Chris Haas

I'm not too good within PowerShell but it looks like you are so you should be able to adapt this C# code very easily. The code in this post is adapted from some code I wrote earlier here.

First off, I really don't recommend keeping global iText abstraction objects around and binding various things to them over and over, that's just looking for trouble.

Instead, for images I'd recommend a simple function that takes a supplied image file and returns a byte array representing that image added to a PDF. Instead of a byte array you could also write the PDF to a temporary file and return that path instead.

private static byte[] ImageToPdf(string imagePath) {
    //Get the size of the current image
    iTextSharp.text.Rectangle pageSize = null;
    using (var srcImage = new Bitmap(imagePath)) {
        pageSize = new iTextSharp.text.Rectangle(0, 0, srcImage.Width, srcImage.Height);
    }

    //Simple image to PDF
    using (var m = new MemoryStream()) {
        using (var d = new Document(pageSize, 0, 0, 0, 0)) {
            using (var w = PdfWriter.GetInstance(d, m)) {
                d.Open();
                d.Add(iTextSharp.text.Image.GetInstance(imagePath));
                d.Close();
            }
        }

        //Grab the bytes before closing out the stream
        return m.ToArray();
    }
}

Then just create a new Document and bind a PdfSmartCopy object to it. You can then enumerate your files, if you have an image, convert it to a PDF first, then just use the PdfSmartCopy method AddDocument() to add that entire document to the final output.

The code below just loop through a single folder, grabs images first and then PDFs but you should be able to adapt it pretty easily, hopefully.

//Folder that contains our sample files
var sourceFolder = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "MergeTest");

//Final file that we're going to emit
var finalFile = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "test.pdf");

//Create our final file, standard iText setup here
using (var fs = new FileStream(finalFile, FileMode.Create, FileAccess.Write, FileShare.None)) {
    using (var doc = new Document()) {

        //Use a smart object copies to merge things
        using (var copy = new PdfSmartCopy(doc, fs)) {

            //Open the document for writing
            doc.Open();

            //Loop through each image in our test folder
            foreach (var img in System.IO.Directory.EnumerateFiles(sourceFolder, "*.jpg")) {

                //Convert the image to a byte array
                var imageAsPdf = ImageToPdf(img);

                //Bind a reader to that PDF
                using( var r = new PdfReader(imageAsPdf) ){

                    //Add that entire document to our final PDF
                    copy.AddDocument(r);
                }
            }

            //Loop through each PDF in our test folder
            foreach (var pdf in System.IO.Directory.EnumerateFiles(sourceFolder, "*.pdf")) {

                //Bind a reader to that PDF
                using (var r = new PdfReader(pdf)) {

                    //Add that entire document to our final PDF
                    copy.AddDocument(r);
                }
            }

            doc.Open();
        }
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!