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

Return PDF from Controller called via jQuery AJAX

I found some answers about using a controller to create a PDF from EvoPDF however none seem to deal with the controller being called via jQuery AJAX. I have a simple jQuery function that sends data to a controller much like many others in my…
Connie DeCinko
  • 996
  • 5
  • 19
  • 39
2
votes
4 answers

What could cause EvoPDF "unable to render html" exception when deployed to Azure Website

Using EvoPDF for a .Net web application works locally, however once deployed to a Microsoft Azure website it throws a generic exception: "unable to render html". Stack trace: [Exception: Could not render the HTML string.] …
Le-roy Staines
  • 2,037
  • 2
  • 22
  • 40
2
votes
1 answer

Convert Html To pdf using EVOPdf version 6.10

I am using Sample code for EvoPDf (version 6.10) for Converting Html to PDF in MVC. Code is shown below. byte[] outPdfBuffer = htmlToPdfConverter.ConvertUrl(url); but it giving exception "Could not start conversion. WinApi error code 216. Check…
Dev Kant Kumar
  • 73
  • 1
  • 11
2
votes
1 answer

How can I make evoPDF to work as ActionFilterAttribute in ASP.NET MVC

I just need to render PDF from website in ASP.NET MVC. I have found quite interesting article about generating PDF from ASP.NET MVC. I think it could be done even better if the page is rendered through ActionFilterAttribute. My Idea is somesthing…
Tomas Kubes
  • 23,880
  • 18
  • 111
  • 148
2
votes
3 answers

PDF conversion suddenly fails if reading stylesheet from SSL

I've been using EvoPdf version 3.5 without problem for long but all of a sudden it can’t read a stylesheet from SSL. string html = "Test"; PdfConverter…
Kristoffer Jälén
  • 4,112
  • 3
  • 30
  • 54
1
vote
2 answers

Is an instance of an object inside a static method affect the object?

We have a static method that returns pdf bytes but there is uncertain times the pdf it generates is blank/distorted. Trying to figure out if an instance of an html to PDF generator being inside a static method causes the output to fail by not being…
johnsabre
  • 355
  • 2
  • 7
1
vote
0 answers

Dynamic section name in EvoHtmlToPdf header

Is there a way in EvoHtmlToPdf to display the section/subsection of a page in the header/footer (i.e. the text of the "current" h1/h2 tag)? With wkhtmltopdf and other tools, it is possible to replace special tags via JavaScript and the HTML header…
1
vote
0 answers

Does EvoPdf works with Azure App Services?

We are well aware of working with EvoPdf on Azure Cloud Services (Classic), but are there any known issues with EvoPdf on App Service deployments?
Sondergaard
  • 1,121
  • 1
  • 7
  • 6
1
vote
2 answers

Is it possible to set which rendering engine to use when exporting a page using EvoPDF

Is it possible to set which rendering engine to use when exporting a page using EvoPDF? The default rendering engine is FireFox apparently whereas I'd need to use IE. protected void btnPdfCreator_Click(object sender, EventArgs e) { var…
The Light
  • 26,341
  • 62
  • 176
  • 258
1
vote
2 answers

How can a ASP.Net UserControl draw svg before the page is finished loading?

I don't know if I'm asking the question correctly so apologies if I am using the wrong terminology. I typically write my own servers, javascript, etc in vi. I've been given a project to enhance a VB.Net / ASP.Net application and I'm having some…
Great Turtle
  • 3,315
  • 7
  • 32
  • 36
1
vote
0 answers

evoPDF conversion triggering mode not working

We are using evoPDF to convert our AngularJS form to PDF. Since the content on the page loads after few service calls, we understood that we need to use the delayed/Manual triggering mode options from evoPDF. Below is the javascript that needs to be…
Vikas Kottari
  • 495
  • 2
  • 10
  • 24
1
vote
1 answer

How to merge PDF documents that contains owner passwords with C#

I am using EVOPDF library to merge multiple PDF documents into one PDF document. When the input PDF documents have owner passwords, the output document only contains blank pages. I see the itext7 has the functionality to remove the owner password…
MartinS
  • 105
  • 3
  • 11
1
vote
0 answers

Automatically generate pdf with charts using latest data and send them through email in asp.net mvc core

I have an asp.net core project. I am using kendo ui to generate charts and then generate pdf. this is working fine. I have another web job (class library) project in same solutin where I need to generate chart using latest data and then export that…
Asif Hameed
  • 1,353
  • 9
  • 25
  • 46
1
vote
1 answer

EvoPDF page margins set into the HTML

I'm using the EvoPDF with which I save HTML to PDF file. The HTML contains long text (can contains lists, tables, etc.). I want to add pages margins, but I don't want to use the pdfConverter.PdfDocumentOptions.{Bottom/Top}Margin - properties, I want…
P R
  • 344
  • 4
  • 18
1
vote
1 answer

Evo Pdf adding custom properties to PDF

I am using Evo HTML to PDF library, and trying to find possibility to add custom properties to generated PDF (PDF meta-data - custom properties as key-value). Does such feature exist in any of your libraries or should I use another library for…