I am using ASP.NET 3.5 with iTextSharp and I have the following code: var templatePath = Server.MapPath(@\"~/Templates/template1.pdf\");
Just wondering if anyone could tell me of a simple way to create files for printing? At the moment I\'m just scripting HTML, but I\'m wondering if there isn\'t some easier way of doing it that would g
I need to programmatically embed an existing PDF (a small graphic) onto a specfic page on an existing PDF. Using iTextSharp I\'ve been able to add a new page containing this embedded PDF, but what nee
I need a table with about 12 cells to display as a header. The following code fails to do this. I am aware table2 does not have 12 cells. On the second page, only \"t开发者_如何学JAVAesting\" is displ
Is it possible to get the pages of a chapter in ITextsharp or somehow spl开发者_开发问答it the file on chapters in vb.net, basically I\'m concatenating multiple files into one pdf and separating them
In an ASP.NET application, I\'m using iTextSharp (PdfStamper, mostly) to fill in some content on a PDF and send it to the user.The following code is inside an OnClick event:
am using iTextSharp ( .NET开发者_如何学JAVA 2.0 Vista ). The iTextSharp Version is 4.1.2.0 PdfReader reader = new PdfReader(pdfFile);
I am trying to create a pdf file with iTextSharp. My attempt writes the content of the pdf to a MemoryStream so I can write the result both into file and a database BLOB. The file gets created, has a
I am getting a NullReferenceException when the following code is executed.I have also noticed that the nested table appeared on a new page when I added in the code that wrote cells to the main table.I
This is pretty much a duplicate of开发者_如何学Go this unanswered question, but hopefully someone in the know is watching now and can be helpful.