我试图插入一个图像到一个新创build的PDF文档使用iTextSharp – 虽然我不知道我正在去正确的方式。 我已经创build了一个图像对象,然后尝试将其添加到页面 – 但没有图像显示 – 虽然我插入的文本确实出现在PDF文档中。
有没有人有任何想法?
public bool createPDF(string batchNumber, string userName, string path) { // step 1: creation of a document-object Document myDocument = new Document(PageSize.A4.Rotate()); try { // step 2: // Now create a writer that listens to this doucment and writes the document to desired Stream. PdfWriter.GetInstance(myDocument, new FileStream(path, FileMode.Create)); // step 3: Open the document now using myDocument.Open(); // step 4: Now add some contents to the document // batch Header eg Batch Sheet myDocument.Add(new Paragraph("Number: " + batchNumber)); myDocument.Add(new Paragraph("Created By: " + userName)); iTextSharp.text.Image logo = iTextSharp.text.Image.GetInstance("code39-barcode.png"); PdfPCell cell = new PdfPCell(logo); myDocument.Add(cell); } catch (DocumentException de) { Console.Error.WriteLine(de.Message); } catch (IOException ioe) { Console.Error.WriteLine(ioe.Message); } // step 5: Remember to close the document myDocument.Close(); return true; }
阅读这个知道如何添加图像
不过,我想你错过了一些表。
你应该有一个表,并使用table.addCell添加单元格
PdfPTable table = new PdfPTable(3); PdfPCell cell = new PdfPCell(new Phrase("Header spanning 3 columns"));
阅读这个知道如何使用表
删除这个:
PdfPCell cell = new PdfPCell(logo); myDocument.Add(cell);
并使用这个:
myDocument.Add(logo);
它的工作:)