-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
i'm having a weird problem with images in iTextSharp library.
I'm adding the image to the PdfPCell and for some reason it gets scaled up.
How do i keep it to original size?
Here's the image of the PDF at 100% and the image in its original size opened in paint.net.
I though that the images would…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to export pdf file using aspx and c#. I got the following error.
Cannot implicitly convert type
'System.Collections.Generic.List'' to
'iTextSharp.text.Element'
I have the following code
using iTextSharp.text;
using iTextSharp.text.pdf;
using iTextSharp.text.html.simpleparser;
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm using iTextsharp library to create PDF files. I can declare for A4 Landscape paper like this:
Dim pdfTable As New PdfPTable(9)
pdfTable.WidthPercentage = 100
Dim pdfDoc As New Document(PageSize.A4.Rotate())
I'm wondering how I can set Height of pdfTable or A4 Height manually. Because…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm using iTextSharp to print a PDF document. Everything goes ok until I have to print the company logo in it.
First I noticed that the logo had poor quality, but after testing with several images, I realize that was the iTextSharp rendering it poorly.
The test I did to say this was to print…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using iTextSharp to merge a number of pdf files together into a single file.
I'm using method described in iTextSharp official tutorials, specifically here, which merges files page by page via PdfWriter and PdfImportedPage.
Turns out some of the files I need to merge are filled out PDF Forms…
>>> More