Questions tagged [hiqpdf]

HTML to PDF Converter for .NET

32 questions
4
votes
1 answer

HiQPdf.HtmlToImage HTML layout error in azure

I am using HiQPdf DLL to convert my HTML into PDF. It works on all server but when i deployed this to Azure ,it throws an error. Below is the error:- "HiQPdf.HtmlToImage HTML layout error" Thanks for your help in Advance.
Parveen
  • 652
  • 1
  • 9
  • 27
3
votes
1 answer

HiQPdf Cannot get the executing assembly directory

When I try to convert html to PDF using HiQPdf on Linux (on Windows works ok) I get this error: Something went wrong: System.Exception: Cannot get the executing assembly directory. Empty directory at hiqpdfimpl.ᤤ..ctor(ᤣ A_0) at…
zielu1
  • 1,308
  • 11
  • 17
2
votes
2 answers

C# HiQ Html to PDF Performance Issue

I'm working on a reporting project in C# that uses Razor pages to generate HTML and HiQ to convert the HTML to PDF. It's been working just fine until we added a new report that has lots of data- the raw data is 2.5mb saved as a text file and the end…
todji
  • 141
  • 7
2
votes
1 answer

Highlight element in pdf based on coordinates c#

I have 5 pages pdf need to highlight specific element based on coordinates Have X top left,Y top left,X top right ,Y top right , X bottom right , Y bottom right ,X bottom left, Y bottom left . I tried below code using iTextsharp please suggest…
Tony
  • 52
  • 15
2
votes
0 answers

HiQPdf downloaded file does not contains Google Charts through IIS production

I am using Asp.net c# library of HiQPdf to convert an aspx page into a pdf through url. when I run the website project from Visual studio in development environment, the converted pdf contains the charts as well. but on publishing it to IIS, the…
Rahul Patel
  • 500
  • 3
  • 11
2
votes
1 answer

How can I use .NET Identity with HiQPdf and render a PDF authenticated

I want to be able to render a PDF from an action in my C#.NET MVC application using .NET Identity. However, the Action I want to render requires the user to be authenticated and HiQPdf doesn't respect cookies as-is. How can I achieve this?
karlingen
  • 13,800
  • 5
  • 43
  • 74
2
votes
2 answers

HiQPdf Merge documents in one pdf and then applay paging

Does anyone have an idea how to enable paging after adding two documents in HiQPdf? Here is my code for adding documents: HtmlToPdf htmlToPdfPotrate = htmlToPdf; htmlToPdfPotrate.Document.PageOrientation = PdfPageOrientation.Landscape; PdfDocument…
Ali Nisar
  • 43
  • 1
  • 6
2
votes
1 answer

How to set the page numbers in HiQPdf?

so.. The only code I can find that you can use in HiQPdf to number the pages is this: // add page numbering Font pageNumberingFont = new Font(new FontFamily("Times New Roman"), 8, GraphicsUnit.Point); PdfText pageNumberingText = new PdfText(5,…
KevinDeus
  • 11,988
  • 20
  • 65
  • 97
1
vote
1 answer

Unable to generate PDF using HiqPDF while application is deployed in Azure Web App

I have created an ASP.NET MVC application (.NET Framework 4.6.2), and using HiqPDF (Version - 10.17.0) to generate PDF from HTML. Following is the code: public static string ConvertHtmlToPdf(string pdfContentFilePath, string pdfOutputPath) { …
Nirman
  • 6,715
  • 19
  • 72
  • 139
1
vote
2 answers

Html to pdf with images using hiqpdf

I am converting a html with images and css files using HiQPdf 8.0. I have done it lots of times in MVC 4. Now I am working under MVC 5 and HiQPdf 8.0 and the problem is HiQPdf 8.0 is not loadin external files like css files and images. I solved the…
Hamid Reza
  • 2,913
  • 9
  • 49
  • 76
1
vote
2 answers

HiqPdf Rendering / Layout Engine

My company is using HiqPdf for some time now, and we had a discussion on what rendering engine HiqPdf parses its html. We couldn't find it on the website of HiqPdf itself nor stackoverflow. http://www.hiqpdf.com/ I would suspect Webkit but does…
Shikiju
  • 722
  • 2
  • 9
  • 18
0
votes
0 answers

HiQPdf - How to determine html for page about to be created

Is there a way to determine the html for the page being created (not the entire document)? For example, if I pass this in: var htmlToPdfDocument = htmlToPdfConverter.ConvertHtmlToPdfDocument(htmlString, baseUrl); Obviously, I already have the…
0
votes
0 answers

HiQPdf company exists?

I am using this software in one of the application from long time but recently the support and sales are not replying so wondering if the company is still there or closed? If there are any other alternatives like this. I saw IronPdf but not sure if…
rohit.b
  • 35
  • 7
0
votes
1 answer

Background image are not loaded in HiQPDF

I am using HiQPDF to convert HTML to PDF. Everything working fine but background images are not displayed in converted PDF file. Please check below code and suggest me what I am doing wrong. Please note I am using MVC with .Net 4.7 and using HiQPDF…
Amit Prajapati
  • 1,190
  • 2
  • 9
  • 13
0
votes
1 answer

HiQPDF error "Cannot write the document to output file. Invalid Serial Number Version." when merging 2 pdf

I'm using HiQPdf to merge 2 pdf in one file, following to the official help: https://www.hiqpdf.com/documentation/html/e5d2f1ee-dccb-4351-888e-e3f3c15a93a5.htm I get the "HiQPdf Evaluation". Which prove the code works. I added my serial…
Emmanuel Gleizer
  • 1,990
  • 16
  • 26
1
2 3