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
24
votes
3 answers

Generate PDF using EVOPdf, WebAPI and AngularJS

I'm having an issue rendering a PDF using EVOPdf from a WebAPI controller to an AngularJS app. This is my code so far: Angular call: var url = 'api/form/build/' + id; $http.get(url, null, { responseType: 'arraybuffer' }) .success(function (data)…
Johann Marx
  • 465
  • 1
  • 6
  • 17
6
votes
2 answers

Cannot apply CSS to the html string

I am trying to integrate evoPDF on my asp.net app. I am sending part of html from my html file onclick through ajax. Everything works fie till this part. Now, when I invoke these methods from EvoPdf API. 1. GetPdfBytesFromHtmlStream(Stream,…
Rabin
  • 418
  • 3
  • 13
5
votes
3 answers

Load HTML error or navigation timeout

I am trying to convert a URL to pdf using evoPDF dll. This runs fine when I execute it on my local machine but fails every time when It is hosted on IIS server. The error is given below. Load HTML error or navigation timeout. Any suggestion will be…
Alok
  • 63
  • 1
  • 6
5
votes
4 answers

EvoPDF library fails on Windows Azure hosted site

The EvoPDF HTML to PDF conversion library (http://www.evopdf.com/) claims it supports the Windows Azure Cloud platform, however I can't get it to work. I get the exception: [Exception: Could not get conversion result header. Data receive error.…
Ross McNab
  • 11,337
  • 3
  • 36
  • 34
3
votes
0 answers

Adding Table of contents to EVOPDF after cover page

I'm using EVO PDF auto generated table of contents. HtmlToPdfConverter.TableOfContentsOptions.AutoTocItemsEnabled = true The table of contents always appears as the first page of the document. I need to have the first page be a cover sheet, the…
JEL
  • 31
  • 3
3
votes
2 answers

FontFamily issue in c#

I am using Google font "Open Sans,sans-serif" in CSS for my web page.I am using evo pdf to generate PDF. In this dynamically creating header and footer using TextElement. My problem is in c# fontfamily there is no such Google font.How can I get…
James
  • 301
  • 2
  • 16
3
votes
3 answers

Tips to reduce PDF file which is generated using EVO HTML to PDF converter dll

I am using EVO PDF dll to generate PDF from HTML, but I ma facing problem of large size of the generated PDF file. This HTML contain contains few JPEG images too, I tried compression option in evo but still file size is still High. If the Original…
Sagar Shirke
  • 648
  • 9
  • 32
3
votes
1 answer

Creating a pdf from a Knockout JS view & viewModel

Scenario: In our application a user can create a invoice by filling in certain fields on a Knockout view. This invoice can be previewed, via another Knockout page. I want to use the preview url within our PDF creator (EVOPdf), so we can provide the…
Andrew
  • 5,395
  • 1
  • 27
  • 47
3
votes
2 answers

Evo Pdf - Page numbering from within HTML

I know it is possible to render "Page X of Y" in a header/footer using the C# API like this: //write the page number TextElement footerText = new TextElement(0, pdfConverter.PdfFooterOptions.FooterHeight - 15, "This is page &p; of &P; ", new…
2
votes
0 answers

EvoPDF set document Language

We are using EvoPdf 8.0 in dotnetcore 6 to generate PDF:s from HTML. We want machine readable info about the human language the page is written in. In line with this page: https://www.w3.org/WAI/WCAG21/Techniques/pdf/PDF16 we want to add meta data…
ztaff
  • 243
  • 1
  • 8
2
votes
1 answer

EvoPdf - Error in "Local IIS" Could not start conversion. WinApi error 5 Check 'evointernal.dat' file execute permission but no error in "IIS Express"

I have ASP .Net framework 4.7 web forms application. I am using EvoHtmlToPdf v8.0 to convert ASP .net form to pdf. I am using default generic version of EvoHtmlToPdf v8.0 which shall be working both in 32-bit and 64-bit environments. I am getting…
2
votes
1 answer

Sign a Pdf Document using EvoPdf

I‘m trying to sign a existing PDF with a certificate that’s located in my local PCs store. Based on this article I identified he correct certificate of type X509Certificate2. For signing I want to use EvoPdf (unfortnately I can't use iTextSharp…
2
votes
1 answer

EvoPdf "Insufficient Data"

At work I have encountered a problem with EvoPdf for DotNet client where it won't actually convert the html because of the following exception: An error occured. Initialization failed: Insufficient data The stack trace shows the following: at…
SomeStudent
  • 2,856
  • 1
  • 22
  • 36
2
votes
1 answer

text-align:justify on a generated evoPDF

I am using evoPDF to convert HTML files and it seems that text-align:justify is not behaving properly. The spacing happens in between characters, instead of in between words. What i have used so far without any…
tiondal
  • 21
  • 3
2
votes
0 answers

EvoPdf convert large Html table use too much RAM

I have a Html file which is roughly 4.3MB contains a table with 6 columns and 10k rows. Each cell contains 1-10 characters, has only "class" attribute for its style which is very simple (font family, font size, text color and cell color). I…
Dung Tran
  • 21
  • 1
1
2 3 4 5 6