Tagged Questions
1
vote
1answer
495 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
295 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
1answer
160 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 ...
0
votes
0answers
324 views
Dynamically Insert Image to PDF using LiveCycle/ITextSharp
I have a pdf template I created using LiveCycle Designer. Inside it, I have 3 Image Fields that I created, ImageField1, ImageField2, ImageField3. The images are located on a url, let's call it ...
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
2answers
553 views
Sending e-mail with ASP.NET MVC3 with attachment
I searched everywhere, but without finding any solution.
The problem is: I'm trying to send e-mails with attachments from an ASP.NET MVC3 application. The problem is: the attachment is (or should be) ...
0
votes
1answer
889 views
.net mvc3 iTextSharp how to add image to pdf in memory stream and return to browser
I have a .pdf file stored in my database, and I have a signature file (.png) stored in my database. I am trying to use iTextSharp to add the signature image to the .pdf file, and display the result ...
0
votes
1answer
233 views
how to send a html table through to mvc action?
What I am attempting is to have a button on a screen ontop of a table which when clicked on downloads a pdf with the content of the table the user sees.
This is how I create the PDF and what the ...
1
vote
1answer
369 views
Difficulty inserting an image into a PDF while using iTextSharp
I referenced this blog post when setting up a way to dynamically generate PDFs for my MVC3 application.
I got everything working fine until I wanted to add an image to the PDF.
Here is my exact view ...
1
vote
3answers
1k views
Get Current HTML Code and Create PDF
I'm using MVC3 and iTextSharp.
At First a added a Save and CreatePDF Button. With the PDF Button i call a Method which returns me the actual HTML Code of the shown WebPage.
So far so good, now I ...
-1
votes
2answers
312 views
Asp.net, C#, Linq and Array usage,
var result = (from p in productInQuery
join o in orderInfoQuery on p.refNo equals o.refNo
join x in productQuery on p.productNo equals x.no
join t in productOutQuery on p.no equals ...
0
votes
1answer
571 views
ItextSharp 401 error (Image issue)
I'm having some trouble using iTextSharp in MVC3.
I am creating a header/footer with some images and it works fine locally but when i upload it to my server it returns a 401:
The remote server ...
3
votes
4answers
2k views
MVC3 return multiple pdfs as a zip file
I have a view that returns a pdf (using iTextSharp) with multiple pages, but now I have to change it so that each page is a separate pdf (with it's own unique title) and return a zip file.
My ...
1
vote
0answers
390 views
ASP.Net MVC 3 iTextSharp pdf table borders
I have a page of my asp.net project to be output as pdf from html. Everything was fine except table borders. It seems like iTextSharp library only read table border="1" rather than table ...
3
votes
1answer
2k views
Why is my ITexthandler not working? I'm trying to parse XML into ITextSharp doc
I’m using Visual Developer 2010, MVC 3, c#. I’m trying to parse XML into an iTextSharp document like this:
ITextHandler textHandler = new ITextHandler(doc);
textHandler.Parse(xmldoc);
...
0
votes
1answer
920 views
iTextSharp | Failing to Output PDF in IE
I recently encountered an issue regarding outputting a PDF generated in iTextSharp into a new window and haven't been able to figure out a way to fix the issue.
This problem only seems to occur in ...
0
votes
2answers
200 views
How do I print one record perpage in iTextSharp
I am building an asp.net mvc 3 application and generating reports using iTextSharp
It is my first time using iTextSharp, I have been able to generate the reports
however here is my problem,
I ...
2
votes
1answer
402 views
Displaying table in PDF using ITextSharp and MVC 3
I am using ASP.NET MVC 3 environment. I am already able to view the pdf using ITextSharp. However, there are many columns in my original grid and I am just listing them in the PDF so a better ...
0
votes
2answers
1k views
Splitting a string based on a set length of characters
MVC 3. Vb.net. Part of my app generates PDF files using Itextsharp. Some strings are too long to go onto the background image correctly. So I basically need to split this string when its over 26 ...
0
votes
1answer
3k views
How to generate DYNAMIC PDF in C# using iTextSharp (or other method)
I have an MVC3 app (C#, razor) with an object that has all of the data I need for a dynamic PDF report that is to be viewed in the users browser. My Companies VS2010 solution already has ...
1
vote
2answers
356 views
Creating a 2 page PDF with a different background image on the second page
I am trying to use itextsharp to take dynamic information and generate a PDF with it.. The PDF's use a background Image on each page which is different and the text content is positioned where it ...
0
votes
1answer
1k views
HTML to PDF Solution (Handling Content, Headers and Footers)
I'm trying to create a "report" by generating a PDF based on HTML.
At first, I simply attempted to write raw encoded HTML to a document and then print that document using Javascript. However, this ...
0
votes
1answer
616 views
Using ItextSharp I am getting Unbalanced begin/end text operators. But they are Matched
I working on a app that uses ItextSharp to generate PDF files for students to print name tags and parking permits... However it keeps throwing: Unbalanced begin/end text operators. at the doc.close()
...
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
780 views
How do I use css and stylesheets with ITextSharp 4
I'm exporting an html view to pdf, how can i get it to recognise css styles? mostly colors, table borders, font sizes, nothing too hectic.
4
votes
1answer
3k views
Convert PartialView Html to String for ITextSharp HtmlParser
I've got a partial view, i'm trying to use ITextSharp to convert the html to pdf. How can I convert the html to string so I can use ItextSharps HtmlParser?
I've tried something like this with no ...
2
votes
3answers
955 views
how can get image from a relative path
i am working in asp .net mvc3.
i want to get a image which exist in this location in my project
G:\projects\CalcoWoms\CalcoWOMS\Content\pictures\calcologo.png
CalcoWOMS is my project name. i want to ...
0
votes
1answer
236 views
error in generating pdf using iTextSharp means previous pdf file is diplayed
I am working in asp .net mvc3.
I have these statements in controller class:
PdfWriter.GetInstance(doc, new FileStream((Request.PhysicalApplicationPath + "\\Receipt5.pdf"),
FileMode.Create));
...
1
vote
2answers
673 views
How to open a pdf at a specific page from ASP.Net MVC using iframes
I have an ASP.NET C# application using MVC. I need to open a PDF file at a specific page in an iframe. I will have to search for a text inside the PDF and open the PDF at the page where the text ...
