0
votes
1answer
13 views

Use iTextSharp to save a PDF to SQL2008 Blob, and Read that Blob to save to disk

I'm currently trying to use iTextSharp to do some PDF field mapping, but the challenging part right now is just saving the modified file in varbinary[max] form. Then I later need to read that blob ...
1
vote
1answer
25 views

Error PDF header signature not found

After converting file from MSword to PDF extraction i am getting a error PDF header signature not found. public void Extract_inputpdf() { text_input_File = string.Empty; StringBuilder ...
0
votes
1answer
22 views

Itextsharp export to pdf NullReferenceException

I am trying to export the aspx page to pdf. I am using this code on Button2_Click, but i take a System.NullReferenceException on htmlworker.Parse(str);: string attachment = "attachment; ...
0
votes
0answers
21 views

Adding first page in PDF while keeping my OCR and custom properties?

I'm trying to add a first page into a PDF document using iText. The problem is that all my custom properties and my OCR are being deleted because adding a new page using PdfWriter is actuality ...
0
votes
0answers
22 views

Clear image alignment with IText

I add the image element (with alignment = left) in my document and then I add a little paragraph. Everything works good but now I need add another paragraph not aligned with image (I need add ...
0
votes
2answers
33 views

Italic text using PdfWriter and iTextSharp

I am using iTextSharp to create some pdf files. These documents have several number of pages and on the all of those pages except the last one we need to have a text written in italic font. Here is ...
0
votes
1answer
73 views

Display ASP.NET generated pdf byte[] to web page without saving the file

I'm using iTextSharp for generating a pdf. I can save the PDF file from the PDF byte[]. byte[] outputPDF = cnt.CreateBreakPDF(); File.WriteAllBytes(pdfOutPutPath, outputPDF); What is the best way ...
0
votes
0answers
41 views

Edit existing PDF text alignment using iTextSharp

I am looking for a way to edit an existing PDF to change the alignment of text blocks. Specifically I want to change the alignment from left alignment to fully justified. Is there any way to do this ...
0
votes
1answer
27 views

How to give custom page size in iTextSharp in C#.NET

I want to create a custom page size which is (5"X2") PDF using iTextSharp in C#. Is there any way to do this? Document doc = new Document(iTextSharp.text.PageSize.A4, 15, 15, 0, 0);
0
votes
0answers
52 views

Add content from PDF by scaling it and preserve its interactivity using iText

I want to add a page from a pdf, pdf1 to another pdf, pdf2 at an absolute position by scaling the size of the page. I know that this can be achieved by using PDFWriter/PDFStamper but the problem is ...
0
votes
1answer
107 views

Open, Edit and Save PDF File in C#.Net

I have a requirement to open an existing pdf file and need to add some comments or edit existing content and save the same file. I spent so many hours on this and most people referred itextsharp or ...
0
votes
0answers
77 views

set new page in HTML using iTextSharp HTMLWorker (html to pdf)

I using iTextSharp (V 5.4.2.0) to convert a html page to pdf. But I would like to be able to set a new page. I've tried this: <div style="page-break-before:always">&nbsp;</div> and ...
-1
votes
0answers
44 views

Watermarks added through iTextsharp can be removed via Adobe Acrobat

I use the following code to set watermarks and to disable printing and copy content. However the watermarks can be removed via Adobe Acrobat. This is also true for disabling printing and copy content. ...
1
vote
1answer
60 views

Extracting the text represented as an image inside the PDF- itextsharp

I am in the process of extracting text from a PDF file using ITextSharp, I have extracted successfully some part of the text that I was interested in but when I carried on with my 'text' extraction, I ...
0
votes
1answer
34 views

Unable to align/resize imagechunk

I'm trying to align my imageChunk which contain a picture from my database I have searched and see methods such as cell.setPaddingLeft(10); but received error I tried method such as ...
0
votes
2answers
148 views

Retrieve binary image data from SQL Server into pdf via iTextSharp ASP.NET

I'm trying to retrieve binary image data from my SQL server and export it into my pdf file by using the follow method phrase.Add(new Chunk("Image :", normalFont)); Byte[] bytes = (Byte[])dr[0]; ...
0
votes
1answer
66 views

Align the words in pdf using iTextSharp ASP.NET, c#

I'm trying to align my words properly in my pdf as all of the words are clustered together. However, i'm adding my word format with a phrase. Hence, i googled some of the tutorial which doesn't seem ...
0
votes
1answer
66 views

c# high resolution images in PDF

I'm trying to put high quality images into PDF (one per page). But if I set page size to a4, I have to resize my pictures, becouse they're too large. Then they loose their quality. Is there any way to ...
0
votes
0answers
47 views

itextsharp NullReferenceException (PageRefs)

I am using itextsharp 5.4.2 to open a library of pdf documents (all generated programatically using the same pdf generation tool, albeit possibly different versions of that tool). itextsharp is ...
0
votes
1answer
68 views

Add Images dynamically in fillable pdf using iTextSharp

I have an interactive PDF form. I can fill out this form, but I also want to add one image at bottom of the PDF dynamically. Images vary according to logged in user. How i can add an image? I'm ...
0
votes
1answer
37 views

Return true when chunk is used iTextSharp

I'm trying to bold my font by using chunk. But the special thing is that my label is written under the addcell within a datareader. This is how i attempt to format my label within my datareader ...
0
votes
0answers
49 views

itextsharp vertical align text in PDF multiline field

How can I set the vertical alignment to center in a PDF field when using iTextSharp? I have already set the field to vertical align center within Acrobat, but when I write text from my application to ...
1
vote
1answer
59 views

itextsharp doesn't make new page when content is longer

I try from 3 day to find way to make one pdf document, and I will appreciate any help. I have few form fields which access and fill with no problem. Below of this fields I want to place dynamically ...
1
vote
1answer
28 views

How to implement getDirectContent() itextsharp

Currently I am working Generating Pdf file. My problem is that I want to print my addressTable into absolute position PdfWriter writer = PdfWriter.GetInstance(doc,stream) PdfContentByte cb = ...
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. ...
0
votes
1answer
40 views

How do I find out which images are where in a PDF?

I am using ITextSharp trying to parse a PDF I have no control over. It doesn't use AcroForm, but it does use images of checkboxes. I can find and extract the two checkbox images themselves (checked ...
1
vote
1answer
58 views

How to set pdf margin?

Currently I am working pdf generation. I do not know how to give margin in pdf. I want to set pdf bottom margin 20mm.I am using delivaryTable.SpacingAfter = 10.04f; code How can I do?
0
votes
1answer
46 views

How to change color of Table in itextsharp

I want to change my table border color, I am using iTextsharp library for generating pdf file. productsTable.DefaultCell.BorderColor= new CMYKColor(0f,0f,100f,0f); When I use this line the ...
0
votes
0answers
35 views

Reading and renaming multiple fields with the same name with iTextSharp

Basically what I have, is a PDF with form fields created with Copy/Pasting (over 700 of them :/ ). The problem is, Acrobat lets all fields with the same name have the same value. This is a problem, ...
0
votes
0answers
50 views

Table, tableCell and Div loses properties in PDF with iTextsharp

I'm trying to get a PDF with te iTextSharp library, but when it's genarated all tables, tablecells and Divs loses it's properties, as width, BackColor And position, all of them are shown as they must ...
1
vote
2answers
142 views

iTextSharp: C# image to PDF - Spread big asp chart on more than one page

I have a very tall asp chart(PNG file), let's say 4000px in height. When the pdf file is generated using iTextSharp, it has only one page and i can see only 25-30% of my chart. I don't want to scale ...
1
vote
1answer
140 views

Error while creating pdf using iTextsharp.dll

Error Occurs while running C# project, which uses itextsharp.dll to genereate pdf file The content of error: "Could not load file or assembly 'itextsharp, Version=5.4.1.0, Culture=neutral, ...
0
votes
0answers
111 views

how to apply css for html to pdf convert process?

I used iTextSharp to convert pdf from HTML with inline Css, but the css is not applying. divPDF.InnerHtml = "<ul ...
0
votes
1answer
67 views

Read info of pdf file without reading whole file

I need to get the information of pdf file. There is my code: PdfReader reader = new PdfReader(fileName); var info = reader.Info; I don't need to read the whole file: if there are a lot of pdf ...
0
votes
2answers
52 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
71 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
105 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
269 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
68 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
115 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
2answers
164 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
1answer
196 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 ...
0
votes
1answer
161 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 ...
1
vote
1answer
205 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
40 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 ...
0
votes
1answer
197 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 < ...
1
vote
1answer
442 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 ...
0
votes
1answer
259 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 ...
-1
votes
1answer
382 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
2answers
103 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. ...

1 2 3 4 5 14