图片转PDF
Posted dishiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图片转PDF相关的知识,希望对你有一定的参考价值。
目的:图片转pdf(image2pdf)
依赖:fpdf.php
网址 为 http://fpdf.org/ 有文档和包
demo:
step 1 :
First download fpdf library class from here http://fpdf.org/
step 2 :
Take the file “fpdf.php” from downloaded file
step 3 :
1 // write this code on your file say example.php 2 // include fpdf library class 3 require(‘fpdf.php’); 4 $image = dirname(__FILE__).DIRECTORY_SEPARATOR.’my_image.png’; 5 $pdf = new FPDF(); 6 $pdf->AddPage(); 7 $pdf->Image($image,20,40,170,170); 8 $pdf->Output();
以上是关于图片转PDF的主要内容,如果未能解决你的问题,请参考以下文章
POI根据模板导出word文件,以及word转PDF,PDF转图片再插入PDF中(防止PDF被修改)