Questions tagged [evopdf]

EVO PDF is a commercial HTML to PDF converter library for .NET that can be integrated in ASP.NET, Windows Forms and Windows Azure Cloud applications.

Web site: EVO PDF Software

90 questions
1
vote
1 answer

Evo Pdf style rendering issue for input button

The input button is not getting the styling.
Krishna9960
  • 529
  • 2
  • 12
1
vote
1 answer

WinApi error code 193. Check 'evopdftohtml.dat'

string pdfFileName = txtpdfpath.Text.ToString(); PdfToHtmlConverter pdfToHtmlConverter = new PdfToHtmlConverter(); pdfToHtmlConverter.CreateIndexFile = false; var outputDirectory = @"C:/"; pdfToHtmlConverter.PdfToolFullPath=…
aggy
  • 163
  • 1
  • 2
  • 14
1
vote
1 answer

Evo pdf does not work with localhost

I m using evo pdf to convert html to pdf file, PdfConverter pdfConverter = new PdfConverter(); //license, credantials pdfConverter.PdfHeaderOptions.HeaderHeight = 70; pdfConverter.PdfHeaderOptions.DrawHeaderLine = false; …
brtb
  • 2,201
  • 6
  • 34
  • 53
1
vote
1 answer

Can I use a tag in generating pdf through evopdf?

I'm using EvoPdf v.2.4.0.0. Every time I try to create "a" tag it displays only text of this tag, but href doesn't work. is it possoible to use href converting html to PDF?
Misha Huziuk
  • 170
  • 4
  • 18
1
vote
1 answer

Unable to find PdfToImageConverter in EvoPdf 6.15 library

I am using the EvoPdf nuget package version 6.15 and I'm unable to work with the PdfToImageConverter utility as mentioned in the sample code. http://www.evopdf.com/pdf-to-image-converter.aspx Is this code referenced in a separate package to the core…
Dan
  • 968
  • 1
  • 8
  • 21
1
vote
1 answer

GetPdfBytesFromUrl sent from within controller still needs authentication

I am using EVOPdf converter in my MVC4 project. I am using the method pdfConverter.GetPdfBytesFromUrl to hit another controller action to return the rendered HTML and have that get converted into a PDF. My problem is that I now have an [Authorize]…
Scottingham
  • 906
  • 2
  • 11
  • 26
1
vote
3 answers

Setting PDF document title and author with EVOPDF in a PDF/A-1b compliant file

I'm trying to set some attributes on a HTML -> PDF generated file using EVOPDF. It seems pretty straightforward to set the PdfDocumentInfo properties. As given by the documentation:…
Mike de Klerk
  • 11,906
  • 8
  • 54
  • 76
1
vote
1 answer

EvoPdf: how to get total page count or skip header/footer in last page

I am using EvoPDF for generating html to pdf. And I can skip headers/footers in first page. But I can't find any idea to skip them on last page. If I would get the pagecount, then I can do that. So, is there any way I can achieve? Thanks.
sovan
  • 479
  • 6
  • 21
1
vote
1 answer

issue when converting html string to pdf using evo pdf library

I got a problem when converting html string to pdf, to be simple, I found the Kendo js/css file I referenced in my html string looks like not working at all. Detail: I am working on a project that converting my views(ASP MVC 4.5 ) to Pdf using Evo…
Kevin Simple
  • 1,225
  • 10
  • 22
1
vote
2 answers

How to get username and password of windows authentication from code

I need to pass WINDOWS AUTHENTICATION details of logged in user to the pdf converter to make it work. I've tried this PdfConverter.AuthenticationOptions.Username =…
Gab
  • 471
  • 3
  • 10
  • 25
1
vote
1 answer

HTML to PDF and Forms authentication

I successfully used the EVO HTML to PDF tool in a previous project and now I'm trying to to integrate it in another project. The problem is that the page I have to convert is behind the ASP.NET forms authentication and when I convert the page I get…
0
votes
0 answers

EvoPdf Html to Pdf Converter taking longer during conversion

I'm using EvoPdf to convert html using method, GetPdfBytesFromHtmlString(). It is taking between 13 to 16 seconds on an app deployed on IIS and at times it takes as low as 2 to 4 seconds for the same activity. I though it might be the html causing…
Sadiq
  • 786
  • 1
  • 10
  • 35
0
votes
1 answer

EvoPdf: Problem on converting html to image while using baseUrl for external resources

I'm using EvoPdf for converting HTML to an Image (EvoPdf: ConvertHtmlToImageObject). Now I tried to set the baseUrl for using local resources like: in the html I'm using a css link for custom fonts. imgConverter.ConvertHtmlToImageObject(html,…
0
votes
0 answers

Evopdf - html to pdf 9.0 for .net not working with ES6

I am using latest version 9 of the Evopdf. HTML to PDF Converter v9.0 for .NET - New Edition ( NE ) However my html page URL which has ES6 statements is not getting printed. Appreciate any inputs if anyone facing same issue.
PAR
  • 707
  • 1
  • 6
  • 18
0
votes
1 answer

EvoHtmlToPdf - gap between item and number in auto generated table of content

I am trying to create lines between items and numbers in a table of contents generated automatically by EVO HTML to Pdf. My current approach is via CSS and the TableOfContentsOptions: converter.TableOfContentsOptions.SetItemStyle(1,…