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
1 answer

Convert html page (with jquery ajax calls) to pdf

I am trying to save html page to pdf using evopdf htmlToPdfConverter. The html page is using jquery ajax to get the data from web api. Any static html content in the html page is printed in the pdf but the tables showing the data from the api are…
PAR
  • 707
  • 1
  • 6
  • 18
0
votes
0 answers

The 'name' does not exist in the current context C#

I was using the sample code for my project to export Html-pdf using EvoPdf converter. This is the If Else statement. if (convertUrlRadioButton.Checked) { string url = urlTextBox.Text; outPdfBuffer =…
Helina
  • 1
  • 4
0
votes
1 answer

EvoPdf.HtmlToPdf isn't rendering foreign languages (Hindi, Bengali)

I'm using EvoPdf.HtmlToPdf with paid license, however, I have noticed that when I'm converting HTML to PDF and downloading, some languages like Hindi, Bengali are not rendering properly. Here is the code snippet I'm using. using…
awais
  • 492
  • 4
  • 17
0
votes
1 answer

EvoPdf and Deployment Mode : Self-contained = Runtime Error

We're using EvoPDF in an NET6 C# MVC application to convert HTML to PDF files for display and emailing as attachments. Using EvoPdf.HtmlToPdf.NetCore in our development environment works fine. If we publish from Visual Studio using Deployment Mode =…
Chris C.
  • 908
  • 1
  • 10
  • 19
0
votes
0 answers

OutOfMemory Exception with EvoPDF and ASP.NET Core

I've recently ported an ASP.NET web project to ASP.NET Core (net5.0). In this project static HTML files are converted to PDF files and stored in a database. We are using EvoPDF for this and everything was fine before we switched to net5.0. Now from…
MiVoth
  • 972
  • 6
  • 16
0
votes
2 answers

Poor image quality when converting word docs with evo pdf

I use the WordToPdfConverter from evo to convert a Word document to a PDF. The Word document, which is in RTF format, contains images such as a QR code. Unfortunately, the image quality in the resulting PDF is very poor (hence the QR code won't be…
0
votes
1 answer

EVO HTML to PDF Client for UWP Demo issue

I'm experiencing problem running EVO HTML to PDF Client for UWP Demo. I made an installation package of the demo application and deployed it to a separate computer. EvoHtmlToPdfService is installed and working. But when I try to convert HTML to PDF,…
Yury
  • 347
  • 3
  • 10
0
votes
0 answers

EvoPdf Could not create the Document. The method parameter cannot be null

I have problem with EvoPdf. Look at the line below: EvoPdf.Document pdfDocument = new EvoPdf.Document(docFile); Where docFile is valid path to file. I had checked it twice. And the exception message is: Could not create the Document. The method…
bozydarlelutko
  • 511
  • 7
  • 21
0
votes
1 answer

Does EvoPdf HtmlToPdfConverter supports emoji character?

Unfortunately the EvoPdf docu doesn't give a statement if emojis are supported in Html -> Pdf conversion. I've tried: var html = "123"; var htmlToPdfConverter = new HtmlToPdfConverter(); var fileName =…
0
votes
0 answers

EvoPdf - How to fill empty space between table end and footer with empty rows

HTML -> PDF. How can I render an unknown number of empty rows, from the last row with data until reach footer? you can see the issue here. The issue is that sometimes rows in the data part will be single-row, sometimes multi-row. My tries: in razor…
0
votes
0 answers

Best practice for building a NuGet package to house 3rd party DLLs

A few of our NuGet packages, in a framework we use for our ASP.NET MVC sites, reference binaries EVOPdf / EVOPDFtoHTML to be exact that I'd rather not have hard pathed on our build machine. The specific versions we are using are not found on…
0
votes
1 answer

Landscape and Portrait in same pdf

I need to generate a pdf report from a URL in our application. Is it possible to have both Landscape and Portrait pages in the same pdf document that is generated? I'd like to have the bar charts as Portrait, and the Tables as Landscape…
adam.k
  • 622
  • 3
  • 15
0
votes
0 answers

how to identify if there is a page-break applied on a table row generated in c#?

i have an application which generates pdf from html using evopdf. in one scenario the html table generation is done using c# stringbuilder. and i need to include page breaks in tables. but when i break the table using 'page-break-inside:auto' the…
0
votes
0 answers

Regarding Numeric Values with Comma and Decimal in textbox in pdf generated by EVOPDF

I am using EVOPDF to generate pdf using code of cshtml in an mvc application. I have a 4 textboxes for amount onto my cshtml file and 1 more text box is for TotalAmount. Total amount's value will be sum of the all 4 textboxes' value. I have…
0
votes
1 answer

Xamarin.Forms failing to use EvoHtmlToPdfclient in order to convert html string to a pdf file

I'm using Xamarin.Forms and I am trying to convert an html string to a pdf file using EvoPdfConverter, but the problem is that when I try to do so, on the line htmlToPdfConverter.ConvertHtmlToFile(htmlData, "", myDir.ToString()); in the code snippet…