0
votes
1answer
258 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
0answers
73 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
124 views

How to setup special characters in iTextSharp on document

I want to create PDF from ASP.NET MVC. I found this library (http://www.codeproject.com/Articles/260470/PDF-reporting-using-ASP-NET-MVC3), which helps me. But when I want print special characters like ...
2
votes
1answer
220 views

Default Parameter PageSize A4 C# using itextsharp

Is it possible to set values for default parameters for PageSize in C#? For example: public virtual void Render(string reportTitle, Rectangle pageSize = PageSize.A4) { foreach (Page p in pages) ...
1
vote
1answer
243 views

iTextSharp creating file in memory resulting corrupted file

I am trying to create a pdf file in MVC using iTextSharp. I do have a following simple used case. File is getting created but when I open the PDF I am getting error file is corrupted unable to open ...
1
vote
1answer
228 views

iTextsharp: Add image and text in a loop (IE, Firefox, Chrome)

I have a form with a button that generates a pdf file. The file loops through an array of images and text and insert each image and text on an absolute position of the document. I can add the image, ...
0
votes
0answers
186 views

Move table down : itextsharp

I am using iTextSharp to generate pdf. My code is, public FileStreamResult Export(int ID) { MemoryStream stream = new MemoryStream(); Document pdf = new Document(); ...
1
vote
1answer
603 views

itextsharp / MCV combining multiple forms into one PDF using bytes

Hi My applion is MVC3 c#, I am using itextsharp to produce PDF files for pre disgned forms. In this application I have to different forms. To generate a form I use: public ActionResult TestPDF(long ...
0
votes
1answer
152 views

Work flow for creating and returning PDF in MVC

I'm using microsoft's MVC platform to create a web application. In this application, users will fill out a HTML form, click submit, get redirected to a successful message page and receive a printout ...
0
votes
1answer
204 views

RedirectToAction / save form and print PDF from on button

my application is MVC3 (ASPX views). I have a form, in the Edit view I have save button, that saves the form and return to the index page, and another button to print PDF from another ActionResult in ...
0
votes
1answer
169 views

Display columns headers on each page inside a PDF document using ItextSharp in MVC

I've been using this guide to create PDF reporting: http://www.codeproject.com/Articles/260470/PDF-reporting-using-ASP-NET-MVC3 Basically I have a form that once it's submitted, It creates and opens ...
0
votes
1answer
226 views

How to programmatically enter password on encrypted pdf?

I will open the pdf on iframe. PDF is encrypted to disable printing. User will enter the password of pdf but i want to do this progmatically. Is there a way to enter the password without decrypting ...
0
votes
1answer
423 views

Error caused by special characters in ITextSharp

I have been using itextsharp, it worked well until I changed the editor to Telerik MVC editor, if I enter special characters such as < or > I get the following error: Object reference not ...
1
vote
4answers
830 views

C# technique for deleting a file from web server immediately after closing

I'm creating PDF invoices in a C# MVC application that I'm attaching to an email and sending, ideally, once the email is sent I'd like to delete the invoice to free up server space and improve ...
0
votes
1answer
2k views

MVC iTextSharp Header and Footer c#

I am using MVC2, header and footer worked well with iTextSharp 4.1.6, however it didn't with 5.2. Here is my code: public FileStreamResult GridPDF() { MemoryStream ...
-1
votes
1answer
352 views

iTextSharp Storing barcodes as Elements - Null reference exception

Im working on a class that will render PDF documents on an intranet web server. The problem that I am having is that iTextSharp uses the PDFWriter to render the barcode images and I am trying to ...
0
votes
1answer
956 views

Putting several images next to each other in a pdfcell with itextsharp

I'm using itextsharp with a aspmvc project to create PDF versions of some of my pages. I have a very basic parser which takes simple html (plus some style info supplied seperately) and creates a pdf. ...
0
votes
1answer
541 views

iTextSharp : document with age portrait and landscape

I'd like to have a a document, the first page "Portrait" and the other (added by NewPage();) landscape. Is it possible ? Thanks,
0
votes
1answer
468 views

how to get the gridview cell's value while export gridview to pdf using iTextSharp

Currently I try to export an gridview (include an image each row) to PDF file. I find out that PdfPTable table = new PdfPTable(TotalColumns) can help me modify and insert the image to the column. like ...
0
votes
0answers
482 views

Illegal character in path using iTextSharp in asp.net MVC

I'm attempting to use the solution outlined here for generating a pdf document from a view, but keep getting the "Illegal character in path" error when I get to this line: var parsed = ...
0
votes
1answer
2k views

iTextSharp MVC View to PDF

I'm having a little trouble with my TextReader when trying to parse the html string I want to convert to PDF when using iTextSharp. Function ViewDeliveryNote(ByVal id As Integer) As FileStreamResult ...
0
votes
1answer
1k views

Corrupt PDF Attachment

I am attempting to do the following: Retrieve a generated pdf from a web page Create an email message Attach the pdf to the message Send the message I am able to retrieve the pdf from the web page ...
0
votes
1answer
310 views

error in generating pdf using iTextSharp

this is my controller class:- public class PlantHeadController : Controller { private WOMSEntities2 db = new WOMSEntities2(); // // GET: /PlantHead/ Document doc ...
4
votes
1answer
940 views

“Specified method is not supported” error with iTextSharp

I'm using iTextSharp to generate PDFs. I've added a test method below that makes a simple page with one paragraph. It works, the PDF is generated, however, sometime after the PDF is sent to the ...
0
votes
1answer
747 views

How do I setup a PdfReader filepath?

This may seem like a trivial question, I would like to open an existing pdf template, edit and flatten the file, then send as an email attachment. But how do I setup PdfReader to read my file located ...
1
vote
1answer
785 views

damaged pdf using ITextSharp and mvc

I am trying to generate a pdf out of an MVC3 webpage. I've viewed all the usual tutorials, but as is often the case when one is in a hurry and doesn't really know what one is doing, I'm making a ...
0
votes
1answer
447 views

How to preview pdf with itext and asp mvc

The following code creates a pdf that downloads after you press the link / button. How do you make it happend that the pdf opens inside the browser without the automatic download? ' ' GET: /PDF ...
2
votes
1answer
984 views

ItextSharp Expected a Dict Object When trying to print

I have a web page that allows a user to view a pdf and print pdf. The print pdf is a copy of the display pdf and i am using ItextSharp to inject the javascript to allow auto printing. I have a method ...
2
votes
1answer
11k views

How to convert pdf Byte[] Array to downloadable file using iTextSharp

Hei guys I have this byte array i want to convert to pdf and make it available for download. Anybody has any idea how this is done? here is my Action Controller public ActionResult ...
0
votes
2answers
572 views

Prompt to download generated PDF file

I have been trying to generate simple PDFs from my app so that I can later move on to generating PDF with dynamic data. My code generates the files but I want a way to also have the browser prompt the ...
0
votes
5answers
1k views

ITextSharp saying File not found when published to My server

I am using ItextSharp and I am getting a new font for it by doing this string fontPath = Path.GetFullPath("C:\\BMSApplicationFiles\\Fonts\\FREE3OF9.TTF"); BaseFont barCodeBase = ...
5
votes
3answers
904 views

Populate Multiple PDFs

I am using itextsharp to populate my PDFs. I have no issues with this. Basically what I am doing is getting the PDF and populating the fields in memory then passing back the MemoryStream to be ...
2
votes
1answer
164 views

Convert asp.net webforms logic to asp.net MVC

I had this code in an old asp.net webforms app to take a MemoryStream and pass it as the Response showing a PDF as the response. I am now working with an asp.net MVC application and looking to do this ...
28
votes
6answers
19k views

How to return PDF to browser in MVC?

I have this demo code for iTextSharp Document document = new Document(); try { PdfWriter.GetInstance(document, new FileStream("Chap0101.pdf", FileMode.Create)); ...
2
votes
3answers
2k views

How to get html content and convert it to PDF with itextsharp?

Does anyone know how to get a html content, convert it to pdf and save it to database? I've tried so many ways, but nothing seems to work. In some articles, it's written to use HTMLParse, in others ...