阅读量:0
在TCPDF中导出图片有两种常用的方式,分别是使用Image()方法和writeHTML()方法。
- 使用Image()方法导出图片:
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');
- 使用writeHTML()方法导出图片:
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中导出图片,可以根据实际需求选择合适的方式进行操作。