iTextSharp is a .NET open source library for PDF generation and manipulation.

learn more… | top users | synonyms

1
vote
1answer
116 views

ITextSharp adding text. Some text not showing up

I am adding text to an already created pdf document using this method. ITextSharp insert text to an existing pdf Basically it uses the PdfContentByte and then adds the content template to the page. I ...
0
votes
1answer
22 views

Fallback font with iTextSharp

I'm using iTextSharp to create PDF:s. I have a small problem that some glyphs are missing from some of the fonts the user can use. Is it possible to have a fallback font or a font stack like you do in ...
1
vote
1answer
63 views

How to justify a paragraph in Itextsharp?

I have a pdfptable with 3 columns, and a pdfpcell (with colspan 3) , and inside this pdfpcell I have a paragraph and I need to show it in PDF with justified alignment . PdfPTable tbl = new ...
0
votes
0answers
60 views

Checking uploaded pdf for virus in ASP.NET

So I did some research on checking an uploaded pdf for viruses and I found these 2 solutions: Save the file to the hard disk, let the antivirus quarantine/delete it if it was infected, then check if ...
0
votes
1answer
120 views

How to open the multiple pdf files in a new windows using asp.net

In my application have grid view with check boxes, select multiple checkboxes click on print button open the pdfs in seperate windows. my code is for (int i = 0; i < ...
0
votes
1answer
119 views

Setting image position using iTextSharp

I have a problem with regards on the page orientation of the paper size. I have a pdf file which contains portrait and landscape page. this code works perfectly. string FileLocation = ...
0
votes
0answers
40 views

iTextSharp - Maintaining gap between two divs

i m using iTextSharp, to convert HTML to PDF. Actually my system is in PHP, our developer have developed a .exe file that integrates with iTextSharp. And this .exe is called via PHP's exec command. ...
1
vote
1answer
211 views

iTextSharp - Digital Signature Issue on Pdf File

I am using iTextSharp to add digital signature to a new pdf. The digital signature is placed on the file as expected. However, when i click in the box its not actually allowing me to select my digital ...
-1
votes
1answer
58 views

how to examine pdf page header for text using itext [closed]

I need to extract pages from an existing pdf document based on the page header. Currently using itextsharp. So far I have not been able to get the header from the page. How do I find the page ...
0
votes
0answers
52 views

iTextSharp: Copying a PDF outputs hidden text in resulting PDF

We're using iTextSharp to create a copy of a page range of PDF files. This works just fine, however when copying PDF files that contain hidden text, this text is outputted to the result of the copy ...
0
votes
0answers
66 views

iTextSharp Dll not printing with my passing html tags

StringReader reader = new StringReader(PDFText); //Create PDF document Document doc = new Document(PageSize.A4); HTMLWorker parser = new HTMLWorker(doc); string PDF_FileName = ...
0
votes
1answer
97 views

Tagged Pdf value from Adobe's document properties using iTextSharp

In Adobe when we press ctrl+d it shows properties of the pdf. From that Document properties how to get taggedpdf value using iTextSharp?
0
votes
0answers
135 views

Using itextsharp to remove inline images from pdf

There are several examples of removing or resizeing images using itextsharp on the net, but i'm unable to find exemples of removing inline images. I´m using the following code to remove XObject ...
0
votes
1answer
102 views

itextsharp merge resizes and unrotates pdf

I'm trying to merge pdf files using itextsharp. The problem 'm getting its that any cropping or rotating I've applied to the individual files before the merge is somehow ignored. All original files ...
2
votes
0answers
70 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 ...
-1
votes
1answer
158 views

Adding pdftable at footer while generating PDF using iTextSharp 4.0 is not working [duplicate]

In my Asp.net application i have to generate PDF so i did this using Itextsharp 4.0 which is free Open source,I refer this to set hearder/footer on the PDF generated, but now my probelm is i am not ...
0
votes
0answers
27 views

visible false of cell when value is zero in my pdf

I want to visible false or not want to display when value is zero on my pdf using itextsharp means when Base Charge: $0.00 i do not want to display on my pdf page. Below is my code sample PdfPCell ...
0
votes
2answers
74 views

iTextSharp: Clipping path lost after RestoreState

I am using iTextSharp to generate PDF files. I've run into a problem where if I SaveState() then RestoreState() after doing Clip(), then my clipping path is lost and further drawing is not clipped. ...
0
votes
0answers
76 views

Last cell border appears at the end of table

hi all am trying to create a pdf using itext sharp.i created a Pdftable and added another pdf table into it.The problem is the last cell of the added pdf table has its border at the bottom.Is that ...
1
vote
3answers
91 views

Set itextsharp textfield to be readonly

I've been trying to set a TextField to be readonly but with no success. I've tried this: field.SetFieldProperty(key, "setfflags", PdfFormField.FF_READ_ONLY, Nothing) But it will give this error: ...
1
vote
1answer
95 views

XFA forms PDF is modified using itextsharp and resulting PDF Gives Extended feature error

I am trying to set field values programatically by modifying XFA Forms PDF containing 2D Barcode.I am having troble opening rersulting PDF with Regular Adobe Reader. Here is an Error "This document ...
-1
votes
0answers
52 views

How do I call a div class using iTextSharper

How do I call a div class using iTextSharper const string classValue = "Body"; hTextWriter.AddAttribute(HtmlTextWriterAttribute.Class, classValue); hTextWriter.RenderBeginTag(HtmlTextWriterTag.Div); ...
1
vote
0answers
151 views

pdf created using iTextsharp is fuzzy or blurry

I'm creating an image from silverlight grid. Converted into png and inserting it into the pdf using iTextsharp. The end result has a very fuzzy/blurry pdf. If i save the same image as png, it is very ...
0
votes
1answer
709 views

Add pdfpTable at footer while creating PDF using iTextsharp

In my Asp.net application i have to generate PDF so i did this using Itextsharp 4.0 which is free Open source,I refer this to set hearder/footer on the PDF generated, but now my probelm is i am not ...
1
vote
1answer
117 views

itextsharp multipage pdf form

I've got a pdf template and i want to generate for every records in database. I've find this but it works only on phisical file. How to make this work only in memory? I tried to use memorystream but i ...
1
vote
2answers
94 views

Align Contents of a String C#

I'm using the iTextSharp extension to output data to a PDF file. I am using a For loop to dynamically output the data, which is on an XML form. The problem I'm having is aligning the contents of a row ...
0
votes
1answer
65 views

Replace and delete PDF File

I am using the following piece of code to delete the old PDF and replace the old one with the new one but with no result. Is is possible to perform this operation on PDF files? As, throughout the net ...
0
votes
1answer
58 views

Where can I find an iText xml reference?

I am evaluating the use of RazorPDF as our reporting solution. For some reason, I cannot find any iText XML reference, beside a few examples. There are plenty of example for the Java or C# API, but ...
1
vote
1answer
91 views

Use External Css to parse XML

OK i am parsing HTML from a string into a PDFCEll. It works great thanks to some help from here. Here is how i am doing it. How do i use an external css file so i can use class's and not STYLE="" ...
0
votes
0answers
91 views

How to refresh Calculated fields in PDF form using ITextSharp

I have a PDF Template file that I am trying to populate with contents of "MyDocument". All the fields populate fine but the problem is that the "Calculated" fields in my PDF are not refreshed. How do ...
1
vote
0answers
95 views

set default name to PDF document with itextsharp

i am sending a PDF to my page and i want to set a default name when the user tries to save the PDF document. i am using ItextSharp and VB.Net Using s As MemoryStream = New MemoryStream() Dim ...
-1
votes
0answers
87 views

Itextsharp PdfPageEventHelper class issues

( first of all , sorry for my bad english). Edit : provided more code I have an asp.net web application that runs at a server and several users access it to generate reports about the database. ...
0
votes
1answer
139 views

Using iTextSharp Stamper - required to update in the same PDF

I am required to replace a word in an existing PDF AcroField with another word. I am using PDFStamper of iTEXTSHARP to do the same and it is working fine. But, in doing so it is required to create a ...
1
vote
1answer
356 views

Convert arabic“unicode” content html or xml to pdf using itextsharp

I am trying to create reports in my asp.net MVC3 application after a lot of search i find many ways talk about ITextSharp to convert my Html/Razor to Pdf I am trying to parse razor view to get PDf as ...
0
votes
1answer
59 views

XMLWorkerHelper output to PDFCell

I am trying to set the HTML output from the XMLWorkerHelper into a PdfPCell instead of the Document. What am I doing wrong? string html = "<h1>Test h1 Heading</h1><ul><li>html ...
0
votes
1answer
45 views

Receive 'Open With' prompt eveytime I open a pdf

C# 2008 Express, Winforms. Using iTextSharp, each time I create a pdf from a template stored on a server I get the ‘Open With’ prompt that asks what program I want to use to open the pdf..which is ...
-1
votes
3answers
91 views

Can't read pdf file

I'm trying to build an application that can read PDF files. I use this guide: http://www.codeproject.com/Articles/14170/Extract-Text-from-PDF-in-C-100-NET but do not understand what it means by ...
0
votes
1answer
271 views

Error in converting HTML with images to PDF using itextsharp

In my application first am allowing the user to create html document using CKEDITOR where user can can create html document and can insert image, form fields etc. the generated HTML document is than ...
0
votes
1answer
30 views

Using ContentByteUtils for raw PDF manipulation

This is a follow up question to: Programmatically change the color of a black box in a PDF file? I have a pdf I created in Illustrator that has basically a black shape in the middle of the page and ...
0
votes
1answer
89 views

Insert PDF in PDF (NOT merging files)

I'd like to insert a PDF page in another PDF page scaled. I'd like to use iTextSharp for this. I have a vector drawing which can be exported as a single page PDF file. I would like to add this file ...
0
votes
0answers
76 views

how to add form field and images while creating a new PDF file?

I am allowing the user to create PDF documents using CKEDITOR. User should be able to add form fields and images at current cursor position. till now have written the code that creates PDF document ...
0
votes
1answer
54 views

Set image to Itextsharp.text.cell throws an error

I have an issue when i set the image to the cell Dim CellAux As PdfPCell CellAux = New PdfPCell(Image.GetInstance("../../Common/Images/image_logo.gif")) and throws the next error: cant find path ...
0
votes
0answers
30 views

PDF Asian language passwords in PDF encryption

I entered an Asian (Korean) password using iTextSharp PDF encryption for opening the file. It did not work, the could not be opened even when the same password was entered. I tried it with Acrobat X ...
0
votes
1answer
206 views

Generate PDF from view using iTextSharp

My requirement is to have a button in my view and clicking on that should generate a PDF report from that view. (Should avoid making another trip to database to get data for the PDF report). I ...
0
votes
0answers
71 views

Unable to find Markup in itextsharp

Im using iTextSharp ver. 5.4.1. I am trying to generate PDF from HTML. Below pasted line of code gives an error the name 'Markup' does not exist in the current context. This works fine with ...
0
votes
1answer
317 views

PDF from HTML String with HTML tags in C# ASP.Net

I am using ITextSharp to create PDF from HTML String. I have written following code, But If strReplace is a my HTML string with tag, How I generate PDF using itextSharp in C# ? MemoryStream ...
0
votes
1answer
136 views

Signing PDFs using iTextSharp with certificate, reliable for at least 7 years

I'm receiving files and I convert them to PDF/A. Then I want to sign them using an reliable signing method. What I try to achieve is the following. The certificate...: will be applied on a ...
-3
votes
1answer
338 views

Generate pdf from Crystal Report using itextsharp in c# [closed]

I designed Crystal Report version 9 with VS 2008, after fill data source of crystal, I want to create pdf from crystal. Here is my code: dt = new DS1.dtAddiDataTable(); for (int i = 0; i < 3; ...
0
votes
1answer
35 views

How to embed a .nav file into pdf portfolio?

I am new here and new to iTextsharp. I have successfully created a pdf portfolio file and displayed it on browser. The default layout is details or custom. And my boss hopes to add some layout for it, ...
-1
votes
1answer
75 views

finding hyperlinks in a pdf file using iTextSharp

on this line PdfDictionary AnnotationAction = (PdfDictionary)AnnotationDictionary.Get(PdfName.A); an exception somebody help this is exception Unable to cast object of type ...

1 2 3 4 5 34