tagged [pdf]

HTML embedded PDF iframe

HTML embedded PDF iframe I have used the tag to embed a pdf file. This works fine in Chrome, IE8+, Firefox etc, but for some reason, when some people are viewing it in IE8, the files are downloading i...

1 Dec at 09:32

PDF Blob - Pop up window not showing content

PDF Blob - Pop up window not showing content I have been working on [this problem](https://stackoverflow.com/questions/21628378/angularjs-display-blob-pdf-in-an-angular-app) for the last few days. Wit...

23 May at 12:10

Is it possible to convert PDF page to Image using itextSharp?

Is it possible to convert PDF page to Image using itextSharp? Hi I have been using itextSharp for all pdf related projects in dot.net. I came across a requirement where I need to convert PDF pages to ...

26 May at 10:45

How to merge two PDF files into one in Java?

How to merge two PDF files into one in Java? I want to merge many PDF files into one using [PDFBox](http://pdfbox.apache.org/) and this is what I've done: ``` PDDocument document = new PDDocument(); f...

4 Oct at 11:33

Dynamic sized multi line TextBox field in a PDF

Dynamic sized multi line TextBox field in a PDF I have created a document in an open office with a multi-line form field: [](https://i.stack.imgur.com/i1ZG2.png) The issue I am having is when the dyna...

30 Dec at 10:9

Can't get Czech characters while generating a PDF

Can't get Czech characters while generating a PDF I have a problem when adding characters such as "Č" or "Ć" while generating a PDF. I'm mostly using paragraphs for inserting some static text into my ...

29 Oct at 14:38

C# - How to convert an image to a PDF (using a free library)

C# - How to convert an image to a PDF (using a free library) I've researched quite a bit but most answers I've found involve using iText which is only free for authors of open source software. My ques...

23 Mar at 13:33

Generate PDF based on HTML code (iTextSharp, PDFSharp?)

Generate PDF based on HTML code (iTextSharp, PDFSharp?) Does the library can - like - generate PDF files *? (bold (strong), spacing (br), etc.) Previously I used and roughly handled in such a way (cod...

29 Sep at 12:48

Help programmatically add text to an existing PDF

Help programmatically add text to an existing PDF I need to write a program that displays a PDF which a third-party supplies. I need to insert text data in to the form before displaying it to the user...

30 Nov at 20:38

How to use wkhtmltopdf.exe in ASP.net

How to use wkhtmltopdf.exe in ASP.net After 10 hours and trying 4 other HTML to PDF tools I'm about ready to explode. [wkhtmltopdf](http://code.google.com/p/wkhtmltopdf/) sounds like an excellent solu...

Convert pdf to jpeg using a free c# solution

Convert pdf to jpeg using a free c# solution I need to convert a pdf file into a jpeg using C#. And the solution (library) has to be free. I have searched a lot of information but seems that I don't g...

26 May at 02:6

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

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[]. What is the best way to display the out...

10 Jul at 04:38

Which are the pdf operators needed to do a search feature in a PDF in iphone sdk?

Which are the pdf operators needed to do a search feature in a PDF in iphone sdk? I have a been trying to do a search feature in a PDF application. I read the Quartz 2d guide in iphone reference libra...

20 Jan at 17:29

How to check if PDF was modified

How to check if PDF was modified I have a PDF generated by 3rd party system. Using PDF editor or els software I have modified it. Is it possible to detect if PDF file was modified, without original fi...

19 Sep at 19:41

Extract text by line from PDF using iTextSharp c#

Extract text by line from PDF using iTextSharp c# I need to run some analysis my extracting data from a PDF document. Using `iTextSharp`, I used the `PdfTextExtractor.GetTextFromPage` method to extrac...

13 Dec at 03:30

HTML to PDF - page break with HtmlRenderer

HTML to PDF - page break with HtmlRenderer I try to convert HTML to PDF using HtmlRenderer. This is part of code: ``` private byte[] CreateHtmlContent() { string htmlContent = File.ReadAllText(@"htm...

5 Sep at 15:8

Reading a PDF File using iText5 for .NET

Reading a PDF File using iText5 for .NET I'm using C# as programming platform and `iTextSharp` to read PDF content. I have used the below code to read the content but it seems it read per page. ``` pu...

30 Oct at 19:25

Using iText (iTextSharp) to populate XFA form fields in PDF?

Using iText (iTextSharp) to populate XFA form fields in PDF? I need to populate XFA form fields in a PDF (created with Adobe LiveCycle Designer). We're attempting to use iText (actually iTextSharp wit...

25 Jun at 00:40

Split PDF into multiple PDFs using iTextsharp

Split PDF into multiple PDFs using iTextsharp ``` public int SplitAndSave(string inputPath, string outputPath) { FileInfo file = new FileInfo(inputPath); string name = file.Name.Substring(0,...

12 Sep at 10:40

How to flatten already filled out PDF form using iTextSharp

How to flatten already filled out PDF form using iTextSharp I'm using iTextSharp to merge a number of pdf files together into a single file. I'm using method described in iTextSharp official tutorials...

21 Dec at 20:15

Programmatic Reading of PDFs in C#

Programmatic Reading of PDFs in C# I see many questions and answers about using C# to generate PDF files. I have a related, but different task. I have a large number of PDF files already created, and ...

9 Mar at 18:43

Extracting text from PDFs in C#

Extracting text from PDFs in C# Pretty simply, I need to rip text out of multiple PDFs (quite a lot actually) in order to analyse the contents before sticking it in an SQL database. I've found some pr...

24 Apr at 12:36

iText - add content to existing PDF file

iText - add content to existing PDF file I want to do the following with iText: (1) parse an existing PDF file (2) add some data to it, on the existing single page of the document (such as a timestamp...

26 Jul at 13:18

Easiest way to create dynamic-content documents (like invoices, delivery notes)

Easiest way to create dynamic-content documents (like invoices, delivery notes) I was searching the web with a few results, but none of them seems to fit the task. I was looking für possibilites for ....

2 Mar at 15:47

How to open PDF file in a new tab or window instead of downloading it (using asp.net)?

How to open PDF file in a new tab or window instead of downloading it (using asp.net)? This is the code for downloading the file. ``` System.IO.FileStream fs = new System.IO.FileStream(Path+"\\"+fileN...

28 Nov at 15:56