Recommend this page to a friend! |
All requests | > | What is the best PHP pdf creation class? | > | Request new recommendation | > | Featured requests | > | No recommendations |
by Adrian - 7 years ago (2017-03-25)
+4 | I need to create PDF documents. |
1. by Liji - 2 years ago (2021-11-06) Reply
Hi I am using this code but while converting to PDF the Language Spelling is not correct. Can anyone guide me how to fix this. (Language Tamil, Font used is Latha)
<?php header('Content-type: text/html; charset=UTF-8') ;//chrome require_once('tcpdf.php'); // create new PDF document $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->setFontSubsetting(true); $pdf->SetFont('Latha', '', 12); $pdf->AddPage();
$utf8text = ' <html><head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head><body> <p>கரூர் பதிவு மாவட்டம், கிருஷ்ணராயபுரம் சார்பதிவகம், வட்டம், போத்துராவுத்தன்பட்டி, மேலவெள்ளாளப்பட்டியில் நத்தம் சர்வே எண். பாதைக்கு கிழக்கு, முருகன் வகையறா நிலத்திற்கு ---தெற்கு, பிச்சை மனைக்கு --- மேற்கு, சீட்டியம்மாள் நிலத்திற்கு இதன்மத்தியில் வடபுரம் கிழமேல் அடி 96 ½ , தென்புரம் கிழமேல் அடி சமீ </body></html>'; $pdf->writeHTML($utf8text, true, 0, true, true); $pdf->Output('example_008.pdf', 'I');
?>
0 | by Dawood Ikhlaq 55 - 7 years ago (2017-07-10) Comment you can also try this new library which uses chrome-cli as browser so no more problems with html,css problems , very simple interface give it a try |
0 | by zinsou A.A.E.Mose 5850 - 7 years ago (2017-06-02) Comment as you use the term create and not convert you can use this class but https://www.phpclasses.org/package/9615-PHP-Convert-HTML-to-PDF-using-pdflayer-API.html has more options like Dave smith told you... |
+3 | by Dave Smith 6845 - 7 years ago (2017-04-30) Comment There are a couple packages out there that are no longer being maintained that can generate PDF files, namely fpdf and tcpdf. This package will take a HTML document and convert it to pdf using an API service which supports html5 and css3. |
Recommend package | |
|