本文介绍使用spire.pdf for java添加图片到pdf文档的方法。更多操作pdf图片的方法,可参考系列文章:、、等。
import com.spire.pdf.*;
import com.spire.pdf.graphics.*;
public class addimage {
public static void main(string[] args) {
//创建文档
pdfdocument pdf = new pdfdocument();
//添加一页
pdfpagebase page = pdf.getpages().add();
//加载图片,并获取图片高宽
pdfimage image = pdfimage.fromfile("fj.png");
int width = image.getwidth()/2;
int height = image.getheight()/2;
//绘制图片到pdf
page.getcanvas().drawimage(image,50,50,width, height);
//保存文档
pdf.savetofile("result.pdf");
pdf.dispose();
}
}
图片添加效果: