iTextSharp is a .NET open source library for PDF generation and manipulation.
0
votes
2answers
24 views
How do I make text field to be hidden?
I'd like to create a text field with iTextSharp that is not visible. Here's code I'm using to create a textfield:
TextField field = new iTextSharp.text.pdf.TextField(writer, new ...
0
votes
0answers
10 views
Is it possible to add an XFA Field Databinding Value with iText?
We are having to work with a XFA styled PDF form that is poorly designed, but we are not the author's of the form (there are many forms we need to do this for). The form has data bindings for most ...
0
votes
0answers
64 views
How can I export text and image to PDF using iTextSharp?
I am having problems with iTextSharp and exporting to .PDF
I'm using iTextSharp 5.1.2.0. The issue is, however, when I try to export one with an RTF snippet referring to an image, the image does not ...
0
votes
0answers
51 views
+50
iTextSharp - MVC / HTMLWorker one string to add to a paragraph
I am sending the contents of Telerik MVC Editor to the controller using Ajax as a string:
I comes out as:
"<strong>Hello world!</strong> <object height=\"1\" id=\"plugin0\" ...
0
votes
1answer
66 views
Populate iTextSharp pdf with database values
I have this code below and trying to populate my pdf with values from the database.
PdfPCell points = new PdfPCell(new Phrase("and is therefore entitled to ", arialCertify));
points.Colspan = 2;
...
1
vote
1answer
30 views
add/insert page to existing pdf form fields using itextsharp
Has anyone used itextsharp to add/insert a pdf form to another form and not lose the form fields. I tried it and it doesn't retain the form fields.
Thanks!
0
votes
1answer
37 views
Put a watermark on a .pdf document that is only visible when printed and is not visible when viewing the document? [duplicate]
Is there a way to use iTextSharp to put a watermark on a .pdf document such that the watermark is only visible when printed and is not visible when viewing the document?
0
votes
1answer
32 views
Insert query values in a cell in iTextSharp
I have managed to generate a pdf using iTextSharp in webmatrix. I have a query shown below:
var db = Database.Open("Northwind");
var sql = "SELECT CustomerID, CompanyName, ContactName, Address, ...
0
votes
0answers
33 views
advice to convert html2pdf
I use itextsharp to convert hml codes to pdf.
When I try to convert html to pdf I get this Error Infinite table loop; row content is larger than the page (for instance because you didn't scale an ...
0
votes
1answer
39 views
How to add an image to a table cell in iTextSharp using webmatrix
I have made a table with cells and interested in having an image in one of the cell.
Below is my code:
doc.Open();
PdfPTable table = new PdfPTable(2);
table.TotalWidth = 570f;
table.LockedWidth = ...
0
votes
0answers
11 views
itext or itextsharp string with 2 upper and lower rows
This is the reference pdf I am trying to replicate.
http://www.depo.com.tw/asp/pdf/R_VW_PASAT_2.pdf
I am working on the PDF catalog and I am trying to output something like the above.
As you guys ...
0
votes
1answer
26 views
iTextSharp throw exception OutOfMemoryException with Larg file
I'm using iTextSharp (5.4.1.0) to merge set of PDF files into one file.
In case of having larg file i got System.OutOfMemoryException at the line of closing document [document.Close();]
Here is my ...
3
votes
2answers
31 views
Extra Characters while extracting font family from PDF
while extracting font name from pdf i will get some junk characters followed by plus sign and then the font name with font style. i want to remove the junk characters.only for few pdf i get that junk ...
0
votes
0answers
21 views
Export file to PDF [duplicate]
I'm using iTextSharp component for VB 2010. I am importing image files and office files from the user and converting the imported file into a byteArray. How do I use iTextSharp to export the scanned ...
1
vote
1answer
30 views
using iTextSharp.ShowTextAligned() to add watermark
We want to add a water mark with user email & name on top of our pdf before we send it. I've written code that does that and it is working great. I want to check if this is the best way of doing ...
0
votes
1answer
48 views
iTextSharp copy document, resize to custom size, and center
I've been struggling with this for awhile so thought I would post this for any gurus who might be able to knock out a solution.
I have a PDF document that I'd like to copy and when I copy it I would ...
0
votes
0answers
36 views
ITextSharp support .NET 4.5 [closed]
Just looking to upgrade a ASP.Net Website from 2.0 to 4.5.
Are there any known issues with running iTextSharp on .Net 4.5?
Thanks in advance!
1
vote
0answers
66 views
Is there any way to convert word file (docx) to TIFF? [closed]
Friends,
I want to convert docx or doc file to TIFF on the fly,
I tried to convert that using iTextSharp but it seems that iTextSharp's parser it is not compatible to do that.
I found ASPOSE but ...
0
votes
0answers
47 views
Maintain CSS styling when converting HTML to PDF in ASP.NET_2013
Basically i am repeating a question already asked previously sometimes in 2009, now its 2013 and i am having the same problem.I did a lot of research on web but to no avail.I am sure that now the ...
0
votes
1answer
25 views
itextsharp set bookmarks to fit page
I'm starting out with itextsharp and I've managed to answer all my questions but one:
How are bookmarks set to open to the fitpage zoom/view?
I apologize if this has already been answered elsewhere.
...
0
votes
1answer
38 views
How to avoid duplicate font resources?
I have some code that uses iTextSharp's PdfSmartCopy class to combine multiple smaller PDF files into one big one:
FileStream outStream = new FileStream(outputFilename, FileMode.Create, ...
0
votes
0answers
13 views
Using iTextSharp to set CheckType, value is cleared by CheckField call
I have tried iTextSharp versions 5.3.5.0 and 5.4.1.0. I want to set the type of checkbox to square but the property seems to be reset when I call field.CheckField.
RadioCheckField field = new ...
0
votes
1answer
59 views
itextsharp output string with multiple rows
This is the reference pdf I am trying to replicate.
http://www.depo.com.tw/asp/pdf/R_VW_PASAT_2.pdf
I am working on the PDF catalog and I am trying to output something like the above.
As you guys ...
1
vote
2answers
129 views
Convert HTML to PDF in MVC with iTextSharp in MVC Razor
I want to convert HTML to PDF with iTextSharp in MVC Razor. I have tried many ways but can't get proper way.
help me!!!
Thanks in Advance.
1
vote
2answers
34 views
iTextSharp - Don't display page numbers if only one page
I have a PDF generated using iTextSharp that displays a "Page 1/4" etc. thing in the footer. This all works fine and is implemented using a PdfTemplate that is set in the OnEndPage() method with the ...
0
votes
2answers
43 views
How can I set XFA data in a static XFA form in iTextSharp and get it to save?
I'm having a very strange issue with XFA Forms in iText / iTextSharp (iTextSharp 5.3.3 via NuGet). I am trying to fill out a static XFA styled form, however my changes are not taking.
I have both ...
4
votes
1answer
73 views
How to mask the image in C# using ITextSharp.dll? [closed]
I am newbie to C#.Can anybody provide me with some links or tutorials for the masking of the image using ITextSharp.dll?
Any help would be appreciated a lot.
Thanks
0
votes
0answers
30 views
iText Sharp Throwing XML Error When Field Names Have Two Pound Signs
I'm experiencing a strange error with iText when trying to set the value for a field name that contains two pound signs. The problem is that I do not have control over the original form field names.
...
1
vote
0answers
31 views
font size and font family comparison
i have extracted a PDF using Itextsharp and converted HTML using span tag. i want compare 2 font family font size. i had used ...
0
votes
0answers
103 views
How to append a table in PDF using iTextsharp without knowing the exact number of pages the table will produce
I'm using iTextSharp to create a PDF and I'm creating multiple tables that run inline in my code. I won't know how long the table is going to be when I fill it with values from my collection. And I ...
0
votes
0answers
20 views
How to copy image annotation from one pdf to another pdf using iTextSharp without loosing the image?
When copy the image annotation from one pdf file to another pdf file using the iTextSharp, the annotation is copied over except the image.
0
votes
0answers
47 views
iTextSharp generating corrupted PDF in WPF
I am new to programming with iTextSharp. i have an application that writes in PDF file. File is written in word and than saved in PDF (there are 2 pages). My problem is, that when I want to write on ...
0
votes
1answer
67 views
how to resize a pdf file from legal format to letter format using c#`
I have pdf files exported as legal format and want to convert them to letter format (basically shrink them), each file may have 1 to 3 pages, below is the code I tried but I have these problems:
...
0
votes
0answers
79 views
Using iTextSharp to create a PDF file to look like as the printPreview is
How can I use iTextSharp to create a PDF text as it is in printPreview. For the printPrevier I use
e.Graphics.DrawString
I want the saved PDF to be the same as it is when I print it.
0
votes
1answer
36 views
how to force a justified alignment on a pdfpcell
to justify a text on a pdfpcell i know these commands
PdfPCell Example= new PdfPCell(new paragraph("Some text here",MyFont));//previous created font
Example.HorizontalAlignment = ...
0
votes
0answers
22 views
Setting IElement properties after creation
I've registered a listener so that I can intercept elements when they are added to a document. Essentially this allows me to set styles for my PDF in one place.
var stylesheet = new PdfStyleSheet()
...
1
vote
1answer
98 views
export to pdf using itextsharp
I have a .aspx page in which I have a panel and some controls and one gridview. I am trying to take the print of that panel, but the downloaded pdf is empty. I don't know why, could someone explain ...
3
votes
1answer
155 views
Position while comparing and extracting text
i have extracted the PDF using itextsharp then converted to html for comparison of two PDF for their stlye. in this i added left and top position for alignment of text. But as soon as i receive ...
0
votes
1answer
82 views
iTextSharp StyleSheet equivalent
When using the HTMLWorker to covert HTML into PDF elements we can provide a StyleSheet instance that can be used to style the generated elements.
Unfortunately the CSS-to-PDF conversion is quite ...
1
vote
2answers
46 views
Detecting CJK characters in a string (C#)
I am using iTextSharp to generate a series of PDFs, using Open Sans as the default font. On occasion, names are inserted into the content of the PDFs. However my issue is that some of the names I need ...
1
vote
1answer
61 views
which is better crystal report or creating PDF for final report [closed]
I have extracted PDF with font color, font family font weight and font style of a text. I am supposed to make a report which includes details which are extracted values in the report. The size of PDF ...
0
votes
2answers
91 views
Remove Javascript from PDF using iTextSharp
This seems like something that should be quick to do, but in practice there seems to be a problem. I have a bunch of PDF forms that include form fields and embedded javascript. I would like to ...
0
votes
2answers
109 views
Need to extract text line by line from PDF using itextsharp and put enter at every end of line
I got this function of itextsharp library to extract pdf text line by line:
PdfTextExtractor.GetTextFromPage(reader, page);
...but I need to put ENTER at every line every end of line of pdf even if ...
0
votes
1answer
87 views
PDFBox 0.7.3 convert pdf to text
I want to convert pdf file to text file but some of pdf files do not work with pdfbox dll as the version of acrobat in newer than Acrobat 5.x
Please tell me what i do?
output.WriteLine("Begin ...
0
votes
1answer
29 views
iTextSharp difference between implicit explicit NewPage
I use the onStartPage event handler to write a header, works great, but I need to know whether I issued a NewPage() or it was issued due to a page overflow. Is there an elegant way to tell?
Thanks in ...
0
votes
1answer
121 views
How to write in iTextSharp in a specific location the zapfdingbatslist in a pdf document
I want to put a check mark using zapfdingbatslist on my pdf document in iTextSharp in a specific location.
What I could do so far is I could show the check mark but it's all on the side of the ...
-2
votes
0answers
78 views
How to read .PDF stored as varbinary(max) from SQL Server and merge them with iTextSharp in C#.NET [closed]
I picked up someone else's code that generates a .PDF for a project using iTextSharp helper methods. I have to merge that .PDF with other .PDFs that are stored in a database as varbinary(max) files.
...
0
votes
1answer
96 views
iTextSharp: Convert PdfObject to PdfStream
I am attempting to pull some font streams out of a pdf file (legality is not an issue, as my company has paid for the rights to display these documents in their original manner - and this requires a ...
0
votes
1answer
28 views
Chinese characters in watermark not shown properly when iTextSharp is used. Some characters are shown as questionmark
While adding watermark to the pdf file using iTextSharp, chinese characters are shown as question marks.
I tried with the base font HELVETICA and tried options like CP1252. Also I tried giving the ...
1
vote
1answer
121 views
Get fontsize from PDF using itextsharp
While extracting text from PDF I need to extract font-size too. First I had extracted like this:
iTextSharp.text.Rectangle rect = new iTextSharp.text.Rectangle(
curBaseline[Vector.I1],
...






