The HTML to PDF Converter for .NET is a library that can be used in any type of .NET application, either ASP.NET web sites or Windows Forms and WPF applications, to convert URLs, HTML strings and streams to PDF or to image. The library is compatible with .NET 2.0, .NET 3.5 and .NET 4.0.
Questions tagged [winnovative]
64 questions
1
vote
3 answers
Winnovative Html to PDF converter not rendering font-face fonts
I'm using Winnovative's Html to PDF converter to print my page to PDF.
// Get a PDF of the URL.
Document document = new Document();
//document.LicenseKey = PDFUtility.LicenseKey;
PdfPage page = document.Pages.AddNewPage(PdfPageSize.A4, new…

Jon
- 3,173
- 3
- 39
- 66
1
vote
2 answers
Winnovative Html to PDF footer line
I am using the Winnovative HTML to PDF converter and always getting the footer line even though I have set PdfFooterOptions.DrawFooterLine to false. I am calling a HtmlToPdfArea method to create the content in the footer.
Has anyone ever seen this…

Larry Fix
- 187
- 8
1
vote
1 answer
Browser emulation using Winnovative HTML to PDF
I'm using the Winnovative HTML to PDF Converter tool to convert HTML output pages to PDF files on the server.
To do so, it uses the server's version of Internet Explorer. Unfortunately, by default that means IE7 mode, no matter what the server has.…

Glen Little
- 6,951
- 4
- 46
- 68
0
votes
2 answers
Winnovative HTML to PDF and CSS writing-mode: tb-rl
If I include the css style 'writing-mode: tb-rl', which is used for writing vertical text, in the html stream that is to be converted to pdf, I get a repeat of the first 30 pages, up to the number of pages that should have rendered, which is always…

Gavin
- 2,153
- 2
- 25
- 35
0
votes
0 answers
Winnovative HTML to PDF with CMYK Colorspace
I want to generate a PDF file for printing with the Winnovative HTML to PDF Converter. With new Document(ColorSpace.CMYK) I can declare the PDf to use CMYK.
But how do I define the CMYK color properly?
CSS doesn't seem to have a definition for…

MilConDoin
- 734
- 6
- 24
0
votes
1 answer
How to create pdf from a panel in window app using winnovative
Is it possible to create a pdf from a panel in a windows app using winnovative HTML to PDF converter? I see that it works if using a WebBrowser contr, however i have data grids in a panel that need to be pdf'd.

Troy Mitchel
- 1,790
- 11
- 50
- 88
0
votes
2 answers
Generate Winnovative PDF to be a certain width/height pixel size
I'm looking to generate a PDF document from HTML using the Winnovative PDF Converter
I wish to convert the PDF to exactly 842 x 595 pixels
I've tried doing:
pdfConverter.PdfDocumentOptions.PdfPageSize = PdfPageSize.A5
But this doesn't fit right. So…

Curtis
- 101,612
- 66
- 270
- 352
0
votes
1 answer
Winnovative, PdfConverter same code showing two different quality of Pdf in locally and after deploying in server
I am using the below code which is giving good quality of pdf locally but after deploying the API in the azure app service and consuming the same method using swagger, the quality of Pdf decreases(size of file also decreasing).
Here parameter…

Pankaj kumar
- 1
- 2
0
votes
2 answers
Winnovative html to pdf converter for Azure function
I want to apply winnovative html to pdf converter for one of my solution in azure function, but during installation it says use of Cloud service, which seems to be outdated. Do we install it using Azure App service?

Ashutosh
- 9
- 1
0
votes
1 answer
Crypto provider is null
We're seeing this error when generating PDFs using Winnovative's HtmlToPdfConverter:
System.Exception
Message: The crypto provider is null
wnvinternal.ᤐ.ᢀ(String A_0):348
wnvinternal.ᤑ.ᜒ(String A_0):165
wnvinternal.ᤑ.ᜀ(String…

OutstandingBill
- 2,614
- 26
- 38
0
votes
0 answers
Server.Execute() executes click handler again after calling asp file
I'm trying to generate a PDF using Winnovative Tools. In my click handler which fires after clicking on the "Print PDF button", I have the code below.
I expect control to resume to the printPDF_Click sub routine after calling Server.Execute() but…

stickfigure4
- 185
- 1
- 4
- 14
0
votes
0 answers
Winnovative Hides Text of TextElements on PDFs
There is a group somewhere in our organization that scans documents and converts them to PDFs. They then associate those PDFs with an "event" record and store them in a database. On demand, my application -- which uses Winnovative HTML to PDF…

MKP
- 65
- 5
0
votes
1 answer
Hosting Winnovative HTML to PDF Converter in Azure
I am looking to port ASP.NET MVC 5 application to being hosted on Azure.We are looking at hosting our application in an Azure App Service. One of the dependancies I have is Winnovative's HTML to PDF converter. The converter does not work in a web…

baynenator
- 23
- 6
0
votes
0 answers
Winnovative HTML to PDF converter for Angular generated page
I'm trying to use Winnovative Html to PDF converter in my .NET MVC hosted Angular (4.1.3) application.
When I use it for non-Angular pages (e.g. http://google.com), it works fine. However, when I tried to convert an Angular page, the PDF just shows…

jhmt
- 1,401
- 1
- 11
- 15
0
votes
1 answer
Winnovative Excel C# Read Text of cell
i'm using Winnovative Excel Library for .NET and i'm able to read the value/text of a cell using this:
var cellText = firstWorksheet["A2"].Text;
But i'm not able to read the "raw text" if the cell is numeric or has a datetime value, I know I can…

SergioCarlosFG
- 125
- 5