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

learn more… | top users | synonyms

5
votes
0answers
267 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
60 views

get text paragraph from pdf using itextsharp

is there any logic to get paragraph text from pdf file using itextsharp?i know pdf only supports run of texts and its hard to determine which runs of texts are related to which paragraph and also i ...
3
votes
0answers
230 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
434 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 ...
2
votes
0answers
46 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
91 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
94 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
301 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
264 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
55 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
349 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
449 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
424 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
527 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 ...
2
votes
0answers
2k views

iTextSharp XmlWorker: right-to-left

After a long time of struggling with this not-so-friendly API, I am finally making progress, but now I've come to a really nasty issue.. I have placed "dir" attributes in various places in my html ...
2
votes
0answers
500 views

Getting the Bookmark of Every Pdf Page

I'm trying to get the bookmark information of a specific pdf page with "iTextSharp.text.pdf", I found how to get a collection of the bookmarks in a pdf, but I want to get it only for a specific page ...
2
votes
0answers
738 views

Scaling PDF Existing Images

I'm trying to go through all the images in a PDF and resize them to reduce the PDF file size. I'm using iTextSharp in C#. Below is my code so far. When I look at the output file none of the images ...
2
votes
0answers
326 views

Methods of securing PDF's

After a bit of research I've come across the following methods of securing PDF files: Password security Certificate security Lifecycle security All of these except for password security seem to ...
1
vote
0answers
56 views

iTextSharp not creating form for PDF

Right now I am using iTextSharp to create a PDF. We have a need to put a few text boxes on this PDF for the user to fill out. The PDF if being generated dynamically since it depends on user input as ...
1
vote
0answers
96 views

How to bold words for use with PdfWriter

I'm trying to bold certain words i am going to insert into my pdf file. The words can be found after my table.addcell("words"). I bold it in order to identify between the data and the label. ...
1
vote
0answers
107 views

Copy protecting a single page in PDF document using C#?

Is it possible to restrict/disable copy/cut/print option (Copy Protect) for a single page in PDF document using C#? I know it is very much possible to copy protect the whole PDF document using third ...
1
vote
0answers
48 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 ...
1
vote
0answers
229 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 ...
1
vote
0answers
130 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
vote
0answers
59 views

Extracting CCITTTFaxDecode image from PDF with DecodeParm EncodedByteAlign=true

I have a PDF that I'm trying to extract images from into a C# Bitmap object (not a file). I'm using iTextSharp 5.4.0. I have noticed that any image with EncodeByteAlign=true as a Decode Parameter ...
1
vote
0answers
124 views

iTextSharp and big table (>100k rows)

We are using iTextSharp to generate some PDF files presenting big table with a large number of rows (more than 100,000). It takes quite a long time (more than 25secondes on my Intel i7 2600k). After ...
1
vote
0answers
42 views

comparing objects in image

I have two images in the pdf which are of different sizes. First I extract the images, later I need to find the similarities of the object, to check whether both the images contains same objects or ...
1
vote
0answers
229 views

Adding borders and background color with iTextSharp to PdfFormField

I want to add borders and background color to my PdfFormField. Now background color is activated only after I write something to text field but before that it is just white. And I can't get borders to ...
1
vote
0answers
238 views

How can I set the position of the table with ItextSharp/C#?

I am writting a windows form code for making offers for my clients. I want it to make pdf file. I do know how to position text. I do know how to make a table, and fill it with content from my ...
1
vote
0answers
427 views

Adding a new page using iTextSharp

I have a class that build the content for my table of contents and that works, fine and dandy. Here's the code: public void Build(string center,IDictionary<string,iTextSharp.text.Image> images) ...
1
vote
0answers
177 views

ASP.NET iTextSharp PDF on iPad - Error

I'm developing an ASP.NET app that returns an iTextSharp (v4.1.6) PDF to the client via an ASP.NET Web API. This works fine in all desktop PC browsers I have tried, e.g. IE9, Firefox, Opera and ...
1
vote
0answers
59 views

How do I add a checkbox to PdfCell in iTestSharp?

I am generating a PDF and would like to add locked check boxes (both checked and unchecked, depending on the data received) with the label. I am not sure how to do that. cell.Phrase = new ...
1
vote
0answers
70 views

flatten annotation

Here what I need to achieve. I received some pdf from my customers, some contains stamp, note etc... inside the pdf. So I need to flatten those annotations so they become part of the pdf. I know ...
1
vote
0answers
590 views

iTextSharp.HTMLWorker bad convert html encrypt UTF-8

I'd like to apologize, my English is not very good. I hope that you help me. I have this string from xslt trans.: "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<html>\r\n <head ...
1
vote
0answers
281 views

How do I get the signature image from a smartcard with C#?

I'm developing a C# application to certify pdf documents. I've got the certification process done but now I need to take the signature image stored in a smartcard and place it in the given PDF file. ...
1
vote
0answers
245 views

how to create radiobutton list using itextsharp in c#

i am trying to make radiobutton list in pdf file using itextsharp but it create box. Is there anyone can say me why this is happening ? for (int j = 0; j < 8; j++) { Rectangle(0, 0, 22, 22), ...
1
vote
0answers
301 views

Generate a pdf from view Mvc 3

Today I received a task to generate a pdf from view .... as I am beginner in programming ... someone would help me with this task .. passing some tips .. where to start researching. Pos'm having ...
1
vote
0answers
479 views

XMLWorker generates only one page

I'm using iTextSharp 5.3.0.0, XmlWorker 1.1.4.0 and Asp.Net C# 3.5 to generate a PDF from a UserControl rendered HTML with ListView and other basic controls. I've already got a PDF file, but it ...
1
vote
0answers
380 views

Remove fonts from PDF iTextSharp

I am using iTextSharp, with C# in Visual Studio 2010 and I've recently encountered the following situation. I've received several ebooks split into numerous PDF files, these files contained galley ...
1
vote
0answers
570 views

Create Table of Contents using iTextSharp

I'm working on some code that I can't make it work. I have a program that takes multiple pdf's and merges them into one file. Now I need to create a table of contents on the first page. You can see ...
1
vote
0answers
112 views

Controlling the font of the content of an HTML Table in iTextSharp

I am using the most recent DLLs and trying to render HTML fragments into a PDF document using the following code: Private Function ReadHtml(ByVal text As String) As Paragraph Dim par = ...
1
vote
0answers
82 views

How to access multiple checkboxes with same name using iTextSharp

I have a pdf that has multiple checkboxes with the same name. This allowed me to require that you check one or more of the checkboxes however I can not find any way to address the individual ...
1
vote
0answers
224 views

iTextSharp 5.3.4:how to find and change the number of the page on which the link is directed from the PDF document?

There is a problem: Get references in PDF. Then get the page number on which the forward link. And move this link to 10 pages forward (for example, a link to the 5th page, and it is necessary, that it ...
1
vote
0answers
240 views

subsitute of Itexthandler.parse in new Itextsharp

I am trying to convert XML into PDF using the itextsharp itexthandler.parse method, but now I updated the DLL of itextsharp to a new one. This is the XML to convert <?xml version="1.0" ...
1
vote
0answers
225 views

How to generate a PDF from a view using media=print for styles

Most of the questions in stackoverflow or in other forums, show how to generate views and sends them by email. But my goal is to generate a PDF from a view with the media=print format and sends it in ...
1
vote
0answers
125 views

How to fix my text to pdf conversion?

I used this code for saving my TextBox content to PDF but it only support for English. It doesn't support for Sinhala, Tamil, Braille letters. <sfd.Title = "Save As PDF"; sfd.Filter = ...
1
vote
0answers
227 views

Fill static pdf with xml source

I'm producing dynamic pdf-files that are filled with an xml data source: The pdf is created in LiveCycle Designer, then I'm using iTextSharp to fill it dynamically: ...
1
vote
0answers
420 views

itextsharp the process cannot access the file

I need some serious help. I'm in a jam and I would appreciate any help I can get. I searched the web for hours, and I'm coming up empty handed. I made a project that does recursion in a directory and ...
1
vote
0answers
334 views

Issue with Itextsharp in c# asp.net server. Cannot load file or assembly

I am making a webpage with c# code running in the back. I am using the itextsharp library to search through PDF files. I am able to compile and deploy the code because I did add the .dll reference and ...
1
vote
0answers
415 views

Rich Text Content Fields with iTextSharp

I'm using iTextSharp to create pdf files on the fly for my users to save on their computers. Currently the way it works is that I had several pdf templates that iTextSharp opens, sets fields from the ...

1 2 3 4 5 12