Library for generating pdf in React js - pdf-generation

Which library should I use to generate pdf in React js? I want to generate pdf without showing data in the UI.Previously ,I was using react-pdf-renderer but it is not working correctly now.
Thank you in advance!

Related

pdf importer with maroto

I am trying to develop a pdf generator. The pdf generator has multiple page. First page has some specific value with is working fine. But the second page has invoice which user uploads, In this case the user can upload a image file or pdf file.
For this I am using maroto library which works great when it comes to image or content generation but there is no support for import another pdf and merge with current one.
Now i know maroto uses gofpdf library and gofpdf has pdi importer so in my mind it should be possible to implement such feature. I didn't get any reply from their git issue board so asking it here.
Can anyone help me with this?? or my only choice is to change the library and do the coding again?
I could not find a solution for this. So i had to improvise the system
the way I solved the problem is:
generate a pdf using marotopdf library
load the second pdf
use unidoc library and merge 2 pdfs (its just merging 2 pdfs 1 after another)
This is not solving my problem 100% as i would like to have the ability to add company logo on the second pdf which is not editable atm. But its dining the main work (merge 2 pdf).
I've created a simple library to help you with this. It adds two methods to the gofpdf Fpdf class:
importPdf imports a PDF into the current PDF document
linkPdf creates a hyperlink to a PDF document
It uses cgo to use the pdsys, pdflib and pdflib_pllibraries.
You can find it here: https://github.com/jung-kurt/gofpdf

Generating pdf of web page in laravel

I want to generate a pdf of a form that a user fills and download it to the users computer.
I tried using the Dompdf package from laravel to do this and everything works fine except the design. The generated pdf does not look exactly like the web page, after doing some searching about this issue, I found out that dompdf does not support a few of the css option.
I was wondering whether there are any other free packages like dompdf that I could use which can have rich styling and convert the web page to pdf with the exact design.

How to generate a pdf using Django

I am using Django 1.9. I am making an app which outputs an inventory as PDF.
Also using this library I can preview the pdf before finally outputting it. Which library can I use for this? Any suggestions..
ReportLab is a library that outputs PDF files dynamically using Django views. You can go through https://docs.djangoproject.com/en/1.9/howto/outputting-pdf/ to learn more about it.

opening pdf file on mobile app using ionic

I use Ionic framework for building mobile app. I call a webapi service,and it returns a byte array to me.(thi byte array is a pdf file that saved in db.) Now, I want to show this pdf file on my mobile application. How can I show a pdf file using ionic?
I read articles on net. But I can not achieve open pdf file. Can anyone give me idea ?
Thanks in advance.
What I did to achieve this was to send the PDF by email using the following plugin : https://github.com/katzer/cordova-plugin-email-composer
Then, you will be able to open the PDF. I did not find a better solution with Ionic.

TCPDF library in JOOMLA! component outputs html in PDF

I have a component in joomla that exports to PDF, the problem that i'm encountering is that the PDF exported is unreadable because the html of the Joomla! page in inserted after and before the pdf itself.
I have made a standard structure of a component and call it like
index.php?option=com_listado_factura&task=exportar_pdf
being com_listado_factura the name of the component and exportar_factura the function of the controller that exports to pdf.
I've looked everywhere and couldn't find the solution, thanks
The solution was to call:
ob_end_clean();
before
$tcpdf->output();

Resources