我必须使用drawImage(page, docu, x, y, ximage, fRatioImage)
插入图像,直到现在我可以使用此函数插入图像,但问题是图像相对于x
和y
坐标移位。
有谁知道这个函数用于点(x, y)
的测量单位?
这是我使用的代码:
PDDocument docu=docu = PDDocument.load(filedoc);
inputStream in = ImageSignature.is;
biimage=ImageIO.read(in);
PDPage page = (PDPage)docu.getDocumentCatalog().getAllPages().get( 0 );
PDXObjectImage ximage = new PDJpeg(docu, biimage );
PdfBoxImageUtil.drawImage(page, docu, x, y, ximage, fRatioImage);