添加上传的文件到iTextSharp PDF新页面

时间:2015-05-21 22:09:21

标签: c# pdf itextsharp

我正在完成pdf生成器的最后一步。我正在使用iText sharp,我能够在StackOverflow的帮助下标记base64图像,没有任何问题。

我的问题是如何迭代发布的文件并在其上添加包含已发布图像文件的新页面。这是我目前对图像进行标记的方法......但是,它来自base64。我需要在压模打开时将从我的应用程序中选择的上传图像添加到pdf中。似乎无法使我的代码工作。

我觉得这很容易通过迭代但无法获得逻辑。请帮忙:

        PdfContentByte pdfContentByte = stamper.GetOverContent(1);
        PdfContentByte pdfContentByte2 = stamper.GetOverContent(4);
        var image = iTextSharp.text.Image.GetInstance(
            Convert.FromBase64String(match.Groups["data"].Value)
        );
        image.SetAbsolutePosition(270, 90);
        image.ScaleToFit(250f, 100f);
        pdfContentByte.AddImage(image);

//标记base64图像效果很好 - 现在我需要在压模关闭之前将上传的图像标记到同一文档中的新页面上。

        var imagepath = "//test//";
        HttpFileCollection uploadFilCol = HttpContext.Current.Request.Files;
        for (int i = 0; i < uploadFilCol.Count; i++)
        {
            HttpPostedFile file = uploadFilCol[i];

            using (FileStream fs = new FileStream(imagepath +  "Invoice-" +

            HttpContext.Current.Request.Form.Get("genUUID") + file, FileMode.Open))
            {
                HttpPostedFile file = uploadFilCol[i];

                pdfContentByte2.AddImage(file);

            }

        }

我发布的文件来自html页面上的输入表单

<input type="file" id="file" name="files[]" runat="server" multiple />

1 个答案:

答案 0 :(得分:2)

基本步骤:

  • 迭代HttpFileCollection
  • 将每个HttpPostedFile读入一个字节数组。
  • 在上一步中使用字节数组创建iText Image
  • 设置图像绝对位置,并根据需要选择缩放。
  • 使用GetOverContent()
  • 在指定的页码处添加图片

让您入门的快速代码段。 测试,并假设您已设置PdfReaderStreamPdfStamper,以及上传工作文件:

HttpFileCollection uploadFilCol = HttpContext.Current.Request.Files;
for (int i = 0; i < uploadFilCol.Count; i++)
{
    HttpPostedFile postedFile = uploadFilCol[i];
    using (var br = new BinaryReader(postedFile.InputStream))
    {
        var imageBytes = br.ReadBytes(postedFile.ContentLength);
        var image = Image.GetInstance(imageBytes);

        // still not sure if you want to add a new blank page, but 
        // here's how
        //stamper.InsertPage(
        //    APPEND_NEW_PAGE_NUMBER, reader.GetPageSize(APPEND_NEW_PAGE_NUMBER - 1)
        //);

        // image absolute position
        image.SetAbsolutePosition(absoluteX, absoluteY);

        // scale image if needed
        // image.ScaleAbsolute(...);

        // PAGE_NUMBER => add image to specific page number
        stamper.GetOverContent(PAGE_NUMBER).AddImage(image);
    }
}