0

我正在拼命尝试将图像插入到现有的带有 droidtext 的 pdf 中。

这个项目的原始版本是用 iText 制作的。所以代码已经存在并被修改以适应 Android。

我所做的是将现有的 PDF 作为背景。在此 pdf 中的指定位置插入文本和十字。就像填写表格一样。到目前为止,这工作得很好,无需大幅更改代码。

现在我想在页面底部设置一个图像来签署表格。我使用了我的原始代码并对其进行了一些调整。这根本不起作用。我试图将图像设置在特定位置。也许这就是错误。

所以我试着用“官方”的方式来做。Pengiuns.jpg 图像位于 SD 卡上。

try {
Document document = new Document();
File f=new File(Environment.getExternalStorageDirectory(), "SimpleImages.pdf");
PdfWriter.getInstance(document,new FileOutputStream(f));
document.open();
document.add(new Paragraph("Simple Image"));
String path = Environment.getExternalStorageDirectory()+"/Penguins.jpg";

if (new File(path).exists()) {
    System.out.println("filesize: " + path + " = " + new File(path).length());
}

Image image =Image.getInstance(path);
document.add(image);
document.close();
} catch (Exception ex) {
    System.out.println("narf");
}

但仍然没有任何图像。我得到的是一个PDF,上面写着“简单图像”,没有别的。我可以访问图片。我通过 if() 获得了正确的文件大小。不抛出异常。

所以我的问题是,如何将 SD 卡上的图像放入我的 pdf 文件中?这里有什么错误?但最重要的是,如何将图像设置到 pdf 中具有大小的特定位置?在我的原始代码中,我使用 setAbsolutePosition( x, y ) 。当我在代码中使用 Eclipse 时,它​​并没有抱怨,但它真的有效吗?

4

2 回答 2

1

您获得“简单图像”的原因是因为您拥有它Paragraph。要添加图像,请使用:

Image myImg1 = Image.getInstance(stream1.toByteArray());

如果您想将其作为最后一页的页脚,您可以使用以下代码,但它适用于文本。您可以尝试对其进行操作以获取图像:

Phrase footerText = new Phrase("THIS REPORT HAS BEEN GENERATED USING INSPECTIONREPORT APP");
HeaderFooter pdfFooter = new HeaderFooter(footerText, false);
doc.setFooter(pdfFooter);

这是示例代码。在这里,我已将图像上传到 Imageview,然后添加到 pdf。希望这可以帮助。

private String NameOfFolder = "/InspectionReport"; 

Document doc = new Document();

try {   //Path to look for App folder 
    String path = Environment.getExternalStorageDirectory().getAbsolutePath() + NameOfFolder;
    String CurrentDateAndTime= getCurrentDateAndTime();   

    // If App folder is not there then create one
    File dir = new File(path);
    if(!dir.exists())
        dir.mkdirs();


    //Creating new file and naming it
    int i = 1;  

    File file = new File(dir, "Inspection"+Integer.toString(i)+"-" + CurrentDateAndTime+".pdf");
    while(file.exists()) {
        file = new File(dir, "Inspection"+Integer.toString(i++)+"-" + CurrentDateAndTime+".pdf");}


        String filep= file.toString();
        FileOutputStream fOut = new FileOutputStream(file);

        Log.d("PDFCreator", "PDF Path: " + path);
        PdfWriter.getInstance(doc, fOut);
        Toast.makeText(getApplicationContext(),filep , Toast.LENGTH_LONG).show();

        //open the document
        doc.open();

        ImageView img1 = (ImageView)findViewById(R.id.img1);
        ByteArrayOutputStream stream1 = new ByteArrayOutputStream();
        Bitmap bitmap1 = ((BitmapDrawable)img1.getDrawable()).getBitmap();
        bitmap1.compress(Bitmap.CompressFormat.JPEG, 100 , stream1);
        Image myImg1 = Image.getInstance(stream1.toByteArray());
        myImg1.setAlignment(Image.MIDDLE);

        doc.add(myImg1);
于 2013-09-09T17:59:30.913 回答
0

试试下面的代码:

/* Inserting Image in PDF */
ByteArrayOutputStream stream = new ByteArrayOutputStream();

Bitmap bitmap = BitmapFactory.decodeResource(getBaseContext().getResources(), R.drawable.android);

bitmap.compress(Bitmap.CompressFormat.JPEG, 100 , stream);

Image myImg = Image.getInstance(stream.toByteArray());

myImg.setAlignment(Image.MIDDLE);

//add image to document
doc.add(myImg);
于 2013-10-24T06:35:18.547 回答