Ben TCPDF ilgili iki sorun var

2 Cevap php

Hi i am using tcpdf in my application and i have two question about that.I am able to get pdf output of a html page when i click specified button. My first question is:How can i download that html's pdf output when i click that button?($pdf->lastPage() didn'work). My second question is:How can i set character encoding for Trkish?(I am using dejavusans but some turkish characters appears as question mark)

Önceden için teşekkürler ...

2 Cevap

çıkışı için size örneklere bir göz atmalısınız: http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf_examples

Ben Türk için karakter kodlamasını belirlemek için tavsiye etmem. Ben yerine utf8 kullanmanızı öneririz. (Dejavusans bir font gibi bir kodlama değil)

<?php
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
// create your PDF
$pdf->Output(); // This will Output the PDF to the Browser if a Plugin is installed or download the PDF file if not

Sen bkz. aşağıdaki kodu .. Gönder düğmesini o form göndermek o düğme için bir form oluşturmak zorunda.

<br>
<?php<br>
if($_POST['download'])<br>
{<br>
$strPdfName = “Myfile”; <br>
<br>
include(“pdf/tcpdf.php”); <br>
<pre>
$strHtml='write here html';
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, ‘UTF-8′, false); <br>

$pdf->setPrintHeader(false); <br>

$pdf->AddPage(); <br>

$pdf->SetFont(‘helvetica’, ”, 9); <br>

$pdf->writeHTML($strHtml, true, 0, true, 0); <br>

$pdf->lastPage();<br>

$pdf->Output($strPdfName, ‘D’);<br>

}<br>
?>