iTextSharp is a .NET open source library for PDF generation and manipulation.
7
votes
0answers
532 views
Is this possible to structural elements from PDF using itextsharp?
We are using itextsharp with C# winform application to parse the pdf file.using itextsharp i can easily extracted the textual data from the pdf file.Suppose pdf file containing two lines of text and ...
5
votes
0answers
249 views
Removing PDF invisible objects with iTextSharp
Is possible to use iTextSharp to remove from a PDF document objects that are not visible (or at least not being displayed)?
More details:
1) My source is a PDF page containing images and text (maybe ...
3
votes
0answers
228 views
Remove Hidden Text from PDF using itextsharp
How to remove hidden text from pdf while extraction text from pdf using itextsharp ?
In above image highighted text in red that was hidden in PDF when opened, but when I extracted the PDF the ...
3
votes
0answers
430 views
Making two identical PDFs using iTextSharp
I want to clone a pdf.
I managed to do that with the pages but I am trying to copy also all metadata, form fields, acrofields etc.
How will I be able to do that using iTextSharp ?
Document document ...
3
votes
0answers
1k views
How to prevent iText table PdfPCell spanning across multiple rows from splitting across pages?
I am using iText (iTextSharp 5.1.1) and I am trying to do some tables.
The first table column spans across several rows. Depending on previous content, the column would sometimes be split on two ...
2
votes
0answers
39 views
Fixed positioning content block using itextsharp
Working on PDF generation for a web application.. for an Invoice generation I need to print label at exact fixed position before page ends using itextsharp.
On an A4 document for Invoice printing.. I ...
2
votes
0answers
80 views
Comparison Of two HTML
I am working on 2 pdf Compare where 1st I extracted PDF to get styles of PDF .PDF styles are extracted and converted to html. then at last I compare 2 HTML text.
For PDF Extraction I used ...
2
votes
0answers
89 views
iTextSharp DataMatrix barcode capacity
I have a specification to implement a DataMatrix barcodes using the 16x36 size. I'm using C# with the iTextSharp library which has a BarcodeDatamatrix class.
Given these barcode dimensions, the ...
2
votes
0answers
296 views
iTextSharp does not render Custom urdu font
I am using custom Urdu Font Jameel Noori Nastaleeq with iTextSharp but it is not showing text at all. It shows text when I use built-in forms like times.ttf etc.
Code is given below:
private void ...
2
votes
0answers
259 views
Issue with itextsharp 5.4 while converting XML to PDF
I am using following code to convert and XML into PDF by using itextsharp 5.4
protected void Page_Load(object sender, EventArgs e)
{
Document document = new Document();
...
2
votes
0answers
54 views
itextsharp unexpected erors
I am new in using this library and I found several examples (I am splitting PDF by page):
code source 1
code source 2
code source 3
But always when somebody begin use Filestream erors occurs ...
2
votes
0answers
343 views
iTextSharp font tag not working with XMLWorker class
I’m using itextsharp 5.3.5 and xml worker to generate the PDF from my html page. In my html page I have a rich text editor which generate the html using the div tags and font tags. Please see the ...
2
votes
0answers
444 views
Insert images in multiple pages in pdf
Is it is possible to change the following code in order to create the images in the beginning and use their references in the pages in which I want to insert the specific image?
using (Stream ...
2
votes
0answers
422 views
Itextsharp: Is There Any Way To Copy Links When Import Pages?
I'm working on a project where i need to edit pdf's before display it
I need
add a watermark
edit permissions ( lock for avoid 'copy/paste' and 'save as' )
edit viewer preferences
And i did ...
2
votes
0answers
516 views
Populating PDF Form using iTextSharp and Unicode characters
I have the following:
A PDF Form created with Adobe Acrobat X (all fields use Helvetica & Helvetica Bold)
A VB.NET project where I try to populate the PDF and then flatten it
What happens it ...