All Questions
16 questions
0
votes
1
answer
326
views
HTML To PDF in Angular
I want to download my Angular (HTML) which is using primeng UI library by using any NPM PDF package but my requirement is like i want to download my DOM as an PDF also the PDF is searchable.
Most of ...
0
votes
1
answer
340
views
Dynamic PDF Generation Angular , NodeJS
Trying to generate a pdf something like this. Although this is not ideal.
for more than a week has gone, not able figure which approach should i go for.
Client Side : html to pdf generation didn't go ...
0
votes
1
answer
482
views
htmlToPdfmake set the alignment in the page footer
How can put page numbers in the center of the page footer in the following code
var val = htmlToPdfmake(html_all);
var dd = {
content: [val],
styles:{'html-table':{alignment:'center'},'html-...
0
votes
1
answer
754
views
Repeat Header in every page jsPDF
I need to repeat a header on every page that I create and export to a pdf, using jsPDF. In this case, I want to repeat the div with id="id1" on every page. I am using React. The code is ...
1
vote
1
answer
724
views
Create PDF in angular 8 in Hebrew
I want to export a PDF in hebrew language using pdfmake library. I have a html page which contains the some hebrew text.I have used canvas linrary for screenshot but I want only text pdf not an image
0
votes
1
answer
1k
views
Can pdfmake generate mixed highcharts(SVG) and other html content?
I want to use pdfmake to download a whole html page into PDF.
However, my page is mixed with highcharts,plain text,html and images.
When I try to export my page, all the highchart part are missing (...
1
vote
0
answers
4k
views
Get "blob" Data generated by "pdfmake" js library and Send it to Server via ajax (Laravel Controller)
I have a JavaScript function that generates PDF file using "jsPDF" : (works fine)
var doc = new jsPDF("p", "mm", "a4");
doc.addImage(data, 'JPEG', 10, 10, 280, 140);
var blob = doc.output('blob');
...
4
votes
2
answers
2k
views
Generate pdf reports in Hebrew
I have tried all the react pdf generators to support Hebrew text. I successfully built the whole reporting system with pdfmake, but then I came to realize it doesn’t support Hebrew ( rtl ). I tried to ...
1
vote
0
answers
1k
views
Export pdf UTF-8 encoding
I have some trouble with exporting data to pdf with arabic characters
, the encoding is incorrect
I tried jsPDF with jsPDF-AutoTable plugin, and i tried pdfMake But the problem still exists
In ...
0
votes
0
answers
946
views
Don't support turkish character with export pdfmake
I am using Bootstrap table. When I click data-export button and I select PDF, content doesn't support Turkish character.
Document is up.
1
vote
1
answer
3k
views
is it possible repeat rows of table in pdf file with pdfmake.js
Is it possible torepeat rows in table generated in pdf with pdfmake.min.js?
I am creating a PDF file. in which I need to repeat row of table according my api response, which is an array of object.
...
1
vote
2
answers
920
views
Install clientside PDF editor with WebPack + npm: At all possible?
I want to create PDF's clientside (in the browser). I'm using WebPack to bundle my javascript application and npm to install the needed libraries. I've tried the following without success:
pdfmake
...
3
votes
1
answer
7k
views
how to get full web page pdf in pdfmake?
I am working on a web application and I have to convert a HTML page (have multiple tables and datatables) to PDF. I am using pdfmake to convert the content of the page to PDF.
This is the script I ...
2
votes
0
answers
2k
views
Generate PDF with Latin/Chinese/Japanese characters
I tried to generate a PDF in client-side using jsPDF and pdfmake javascript libraries supporting Latin/Chinese/Japanese characters.
The problem with jsPDF is that it hasn't got UTF-8 support and it's ...
5
votes
1
answer
6k
views
Export html to PDF with JavaScript
I want to export HTML to PDF with JavaScript, I saw libraries like jsPDF and pdfMake, but they are very limited. For example, with none of them I can export HTML elements, like <hr>, with jsPDF ...