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
0
votes
0 answers

Is it possible to use Font Awesome icons with EvoPDF / .Net ?

I use EvoPDF in Asp.Net / MVC to convert HTML into PDF. I would like to use Font Awesome icons, but they are not displayed in the PDF result, Although Bootstrap works correctly in the same context. The bootstrap and fontawesome files are included in…
Matt Hooper
  • 103
  • 1
  • 9
0
votes
0 answers

EvoPdf and FIPS

I'm using evo pdf and asp application was hosted on windows server 2016. I'm not able to generate a report getting FIPS error: I tried turning of the fips that cannot able to contact the windows server 2016 hosted sql server.
Krish
  • 1
  • 1
0
votes
2 answers

How to use custom css file when converting page to pdf using EvoPDF?

I want to use custom, external CSS file when converting my ASP.NET MVC page to pdf using EvoPDF library. I don't see anywhere any Styles property that indicates it could be done, is it possible? Do you know any workaround to have specific CSS styles…
Twelve
  • 578
  • 7
  • 15
0
votes
0 answers

Evopdf - means to resolve external resources without baseUrl

With EvoPdf you can convert a HTML stream to a PDF with various overloads of the HtmlToPdfConverter.ConvertHtmlStream method. Now you have to pass a baseUrl parameter to resolve external resources (css, images, etc.). My question now is whether…
Sjoerd222888
  • 3,228
  • 3
  • 31
  • 64
0
votes
1 answer

EvoPdf loading images from Dropbox

I have an application that I put some drop box images like (https://www.dropbox.com/sh/u3xjkrah9fzm7ju/AAB_TLn83FQH456O79od0_moa/3286Z.png?dl=1) and then I convert the page to a PDF using EVOPDF, but these images aren't rendered.
0
votes
1 answer

Evopdf truncate contains in pdf

I use evaluation version of evopdf. Actually, evopdf truncate contains in the render pdf document. I think that evopdf only render the part of document visible in window browser.
Elise
  • 31
  • 4
0
votes
0 answers

evoPDF export from Angular & .NET

We are trying to export a PDF of our HTML page which is rendered using Angular. The PDF which is currently being produced contains the static content but none of the Angular requested data. Upon trying to debug this we placed break points in each of…
Thomas
  • 65
  • 6
0
votes
0 answers

PDF is blank page after converted from html/aspx page using EVOPDF

Conversion of html/aspx pages into PDF is successful,but PDF file has no actual content in it. I'm using EVOPDF in sharepoint, Please suggest.
raju
  • 1
  • 3
0
votes
2 answers

EVO PDF PDF contents have small font

I am trying to create a PDF file by using EVOHTMLTOPDF. But the pdf generated is wrong and the contents has a font size so small that i cant even read it. This is the current code I use inside a webservice HtmlToPdfConverter…
0
votes
1 answer

Frequently receiving "Could not get a reference to rendering Engine"

While sending the html string to "var document = _converter.GetPdfDocumentObjectFromHtmlString(html);" I receive the below exception enter image description here Any idea of what may cause the issue? I have not seen this question anywhere in…
Bhanodai
  • 1
  • 1
0
votes
1 answer

Evo Pdf not converting HTML to PDF

Evo PDF not converting HTML to PDF which contains more than 1000 pages including 2000 images. pdfConverter.NavigationTimeout = 5000; pdfConverter.ConversionDelay = 300;
James
  • 301
  • 2
  • 16
0
votes
1 answer

Unable to render page on localhost using EvoPDF

I am using EvoPDF html to pdf converter (v6.16) for .NET, and am attempting to generate the PDF using a localhost url. Please see an example of this below: public void GeneratePDF() { HtmlToPdfConverter converter = new HtmlToPdfConverter(); …
Mark
  • 459
  • 2
  • 12
0
votes
1 answer

cannot apply external CSS even after providing fully qualified URL in HTML String

body {} .table{ background-color:aqua } this is my StyleSheet1.css saved in my local at C:\Users\ingyadav\Documents\Visual Studio 2015\Projects\StyleSheet1.css
aggy
  • 163
  • 1
  • 2
  • 14
0
votes
1 answer

EvoPdf Page backgrounds and Margins

I am converting HTML pages using EvoPdf and would like to add a background image. I am generating documents and would like to add a cover page, I am doing this by prepending the HTML for the cover page then putting a page break directly after. I am…
Morgan
  • 76
  • 8
0
votes
2 answers

EvoPDF - can I access the retrieved HTML as a string

I am using EvoPDF - I get the required info from a webpage and add it to a pdf document like this: HtmlToPdfElement html = new HtmlToPdfElement(0, yLocation, onlinePress[i].HyperLink); // Optionally set a delay before conversion to allow…
Percy
  • 2,855
  • 2
  • 33
  • 56