- 精华
- 活跃值
-
- 积分
- 337
- 违规
-
- 印币
-
- 鲜花值
-
- 在线时间
- 小时
累计签到:14 天 连续签到:1 天
|
/**
* 把JPG .jgp .png 测试过都支持 转换成PDF文件 页面大小同 JPG的像素
* @para m jpgPath
* @para m pdfPath
*/
public static void JpgToPdf(String jpgPath,String pdfPath){
Document document=null;
FileOutputStream outputStream=null;
try {
Image image = Image.getInstance(jpgPath);
Rectangle pageSize = new Rectangle(image.getPlAInWidth(),image.getPlainHeight());
//设置页面尺寸 并且把页边距上下左右改成0
document = new Document(pageSize,0,0,0,0);//新建一个文档并且设置页面大小
//如果新生成的路径已经存在了 就删除
if(new File(pdfPath).exists())new File(pdfPath).delete();
outputStream = new FileOutputStream(pdfPath);//新建一个pdf文档
PdfWriter writer = PdfWriter.getInstance(document, outputStream);//把新建的pdf 赋值给 document
writer.setPdfVersion(PdfWriter.VERSION_1_3); //设置pdf的版本号
document.addTitle("标题:");
document.addAuthor("作者:CPC_JAVA");
document.addSubject("主题:没有的");
document.addKeywords("关键字:没有的");
document.addCreator("创建:JiaLan75");
document.open();//打开 document文档
PdfContentByte cb = writer.getDirectContent();//创建一个写入流
document.add(image);
} catch (Exception e) {
e.printStackTrace();
}finally {
try {
outputStream.flush();
document.close();
outputStream.close();
}catch (Exception e){
e.printStackTrace();
}
}
}
|
|