Android PDF图像定位

时间:2015-05-08 20:10:37

标签: android pdf-generation itext

我正在努力将图像定位在附加的PDF中。这是我使用的代码

 PdfReader reader = new PdfReader(getResources().openRawResource(R.raw.template3));
                    PdfStamper stamper = new PdfStamper(reader, output);
                    Bitmap bmp = FileUtils.getResizedBitmap(mInvoice.getProfile().getLogoImagePath(), 150, 150);
                    ByteArrayOutputStream stream = new ByteArrayOutputStream();
                    bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
                    Image image = Image.getInstance(stream.toByteArray());
                    image.scaleAbsolute(150f, 150f);
                    image.setAbsolutePosition(385f, 768f);
                    image.setSpacingBefore(50f);

                    PdfContentByte overContent = stamper.getOverContent(1);
                    overContent.addImage(image);

就setAbsolutePath的输入而言,我尝试了很多变量而没有成功。我希望在没有成功的情况下将图像向下推之前添加间距。我想将图像向下推到页面一点,它当前位于右上角。

Sample PDF Generated by iTextG

赞赏任何意见。

0 个答案:

没有答案