我正在完成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 />
答案 0 :(得分:2)
基本步骤:
HttpFileCollection
。HttpPostedFile
读入一个字节数组。Image
。GetOverContent()
让您入门的快速代码段。 未测试,并假设您已设置PdfReader
,Stream
和PdfStamper
,以及上传工作文件:
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);
}
}