在TCPDF中導出圖片有兩種常用的方式,分別是使用Image()方法和writeHTML()方法。
require('tcpdf.php');
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->AddPage();
$image_file = 'path/to/image.jpg';
$pdf->Image($image_file, 10, 10, 50, '', 'JPG', '', 'T', false, 300, '', false, false, 0, false, false, false);
$pdf->Output('example.pdf', 'I');
require('tcpdf.php');
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->AddPage();
$html = '<img src="path/to/image.jpg" width="50" height="50">';
$pdf->writeHTML($html, true, false, true, false, '');
$pdf->Output('example.pdf', 'I');
以上代碼示例展示了如何在TCPDF中導出圖片,可以根據實際需求選擇合適的方式進行操作。