Questions tagged [ironpdf]
69 questions
0
votes
0 answers
IronPdf - Signature not displaying in Signature Panel
I'm attempting to create a sample PDF in IronPDF using their example, with a slight modification
// Step 1. Create a PDF
ChromePdfRenderer Renderer = new ChromePdfRenderer();
using PdfDocument doc = Renderer.RenderHtmlAsPdf("
Testing 2048 bit…

ist_lion
- 3,149
- 9
- 43
- 73
0
votes
0 answers
IronPDF makes SVG blur (leaflet map)
I am adding a leaflet map SVG to a PDF using iron PDF, my leaflet SVG consists of layers with custom SVGs set as their 'fill' or background. SVGs are sharp and accurate when rendered in web browser or when I create an SVG with it but it gets blur…
0
votes
0 answers
Iron pdf print so slow when using a style or css
I have the following code which uses iron pdf version 2023.1.11416 in .net 6.0 project to print pdf from html. The problem is that when the html is large(about 400 pages or more) and have style/css the pdf rendering is super slow about 3 -4…

Helen Araya
- 1,886
- 3
- 28
- 54
0
votes
1 answer
IronPDF: using ChromePdfRenderer.RenderUrlAsPdf
I'm using the ChromePdfRenderer.RenderUrlAsPdf method to render a ASP.NET blazor page.
That page is using some internal methods from the model. When everything is good, it works fine.
The problem is that when any of those methods fails, the server…

Juan
- 41
- 5
0
votes
0 answers
Iron PDF: Print html table with lots of columns
I'm using iron odf to print that table. But it prints only the left part of the table, and the right part it won't print. Is there a way to print the table on multiple pages?
As pictured bewlo the generated PDF does not include all the columns in my…

Helen Araya
- 1,886
- 3
- 28
- 54
0
votes
0 answers
How do I translate barcode location to millimeters on page?
IronBarCode recently added coordinates (X1, X2, Y1, Y2) to their BarcodeResult class.
Unfortunately there is no documentation on how to translate these coordinates to sth usefull like "millimeters from left page border".
Do you have any ideas on how…

Sebastian Weber
- 6,766
- 2
- 30
- 49
0
votes
1 answer
IronPDF html query parameter
Does IronPDF support html query parameters, or is there an alternate method?
I've been using IronPDF to convert an html file to PDF using the following method: var pdf = ironRenderer.RenderUrlAsPdf(reportPath);
However, the html located at…

user19662412
- 1
- 2
0
votes
1 answer
IronPDF Renderer.RenderHtmlAsPdf failing when deployed to IIS
We are using ironPDF to genetate PDF file from HTML string. It is a MVC web application written in C# (.net framework 4.8) , deployed to IIS
I did the following.
Added IronPdf nuget package to the project (Version: 2022.11.10347)
Use the following…

Prasanth
- 31
- 3
- 9
0
votes
1 answer
How do I get a TextHeaderFooter to display in the footer?
We're using IronPdf to convert HTML to a PDF. Got it up and running pretty easily until I tried to add page numbers. Using the HtmlHeaderFooter with LoadStylesAndCSSFromMainHtmlDocument set to true more than doubles the rendering time.
Turning it…

todji
- 141
- 7
0
votes
1 answer
add an image to given coordinates on a PDF page
How can I add an image to given coordinates (x,y) on a PDF page, using IronPdf?
Using the samples, I managed easily to add a "stamp", but that is placed in the center of the page.
I would need to be able to pass (x,y) as parameters when adding the…
0
votes
1 answer
Priniting page as PDF with code returns a blank PDF file
I am trying to make a program that can print orders from a website form as PDF. The issue I am experiencing is when I try to use any type of html to pdf or uri to pdf parser it returns a blank page with no data at all. (I have attempted online…

Eivind
- 74
- 1
- 7
0
votes
1 answer
How to copy a pdf file with the amount of copies in the database as the value using C#?
I need to get the amount of copies from my local database and use that value to make copies of the pdf file.
public Boolean getAmountOfCopies()
{
string connectionString = null;
MySqlConnection cnn;
…

KingSkitz
- 70
- 10
0
votes
1 answer
IronPDF: CS0618: Class 'IronPdf.HtmlHeaderFooter' is obsolete: 'Please use the newer API class IronPdf.HtmlHeaderFooter'
Since the latest version (2022.4.0.5575) I get an obsolete warning on the HtmlHeaderFooter class in IronPdf:
CS0618: Class 'IronPdf.HtmlHeaderFooter' is obsolete: 'Please use the newer API class IronPdf.HtmlHeaderFooter'
using IronPdf;
namespace…

Jos Theeuwen
- 899
- 1
- 7
- 8
0
votes
1 answer
How do I fix IronPDF's error "System.UnauthorizedAccessException: Access to the path 'Global\IronSoftwareDeploymentGlobal' is denied."
We're using IronPDF to change a dynamic HTML string into a PDF. In localhost, dev and test environments, it works without a problem. However, in our QA environment, we get the following error:
System.TypeInitializationException: The type initializer…

HumanHickory
- 464
- 1
- 6
- 19
0
votes
1 answer
Does the IronPDF free trial affect already built apps?
I wanted to use the IronPDF library in an app for personal usage. They offer a free 30-day key, but I'm not sure if my PDFs will suddenly get watermarks in 30 days in case they validate the key somehow each time.

ZivDero
- 21
- 1
- 6