gpt4 book ai didi

android - 在pdf android中插入图像

转载 作者:太空狗 更新时间:2023-10-29 13:35:38 26 4
gpt4 key购买 nike

如何使用 DroidText 在 pdf 中添加图像我已经尝试了以下代码 -

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"));

Image image =Image.getInstance("file:///mnt/sdcard/img.png");
document.add(image);
document.close();

最佳答案

解决了...

Image image =Image.getInstance("sdcard/img.png");

关于android - 在pdf android中插入图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10975668/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com