I have a web app that generates quite large PDF documents, possibly 100 pages and more.
The workflow is this:
Generate html using nunjucks templates
Open a puppeteer browser
Create PDF front page (see code below)
Create PDF pages
Merge the pages to…
I am using React-pdf to show a pdf viewer from html on my website. I can easily show the rich text editor value in HTML. But can't show it in pdf viewer using react-pdf. In HTML I just used below code to retrieve data from rich text editor.
I'm using openhtmltopdf to transform html to pdf. Currently I'm getting an exception if the html contains german characters, like for example ä,ö,ü.
PdfRendererBuilder builder = new PdfRendererBuilder();
builder.useFastMode();
…
I am currently trying to convert HTML to PDF using itext7 and itext7.pdfhtml but have a small problem.
I have a fixed footer (.footer) which works well when opened with a browser but when converted using below code, the div is not fixed to the…
I'm new to Java, I'm working on generating pdf from html. Therefore, I'm using the iText7, I can generate a normal pdf file through PdfWriter and Document but I can't do it using html2pdf.
Here is my Pom.xml
I am having a formatting issue with PDF generation with TCPDF in CakePHP.
It doesn't show the exact table & div structure as there in HTML.
Does anyone know the solution for it?
Thanks in advance.
I want to export my HTML page into pdf using angular 6.
I have written following code to convert into pdf
let dataPdf = document.getElementById('contentToPrint');
const pdf = new jspdf('p', 'pt',…
wkhtmltopdf version(s) affected: wkhtmltox-0.12.5-1.msvc2015-win64
Getting unwanted space in TR
check attached snapshot for clarification.
Issue appears when we use div inside td.
I use openhtmltopdf library (version: 0.0.1-RC15). I have a problem with unicode characters. In PDF file I see "#" symbols instead of "ă" and "ș".
How I can fix it? Thank you.
I'm having an issue with iText when generating PDF from HTML. I'm passing the "import information section" from Locize, which contains bold tags and list bullet
I'm using iText7 to convert from HTML to PDF which runs perfectly
however this call:
HtmlConverter.ConvertToPdf(htmlStream, document);
will close the document after it's called but I don't want to close the document yet for the following reason…
I'm using JSPDF to convert HTML to pdf and I want to send it over email.
For that, I need to store the file in the folder. But I'm not able to store it on the folder as "jspdf.save('filename.pdf')" does not give option for path.
var pdf = new…
I want to use Rotativa in my application, but when I include "Rotativa in my project.json file. The package console shows Restoring packages failed and the error is:
The Dependency Rotativa 1.6.4 does not support framework…
I am working on upgrading a .NET application without changing its functionality. What I did so far is:
upgrading from mvc 2 to mvc 4
upgrading from framework 3.5 to 4.0
using visual studio 2015 instead of 2010
upgrading the custom made utilities…
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…