gpt4 book ai didi

android - 如何在 android 中使用 itext 库将图像放入 pdf 中?

转载 作者:行者123 更新时间:2023-11-29 15:16:28 25 4
gpt4 key购买 nike

我在 drawable 文件夹中有一个 png 图像,我想在 pdf 中使用该 png 图像。我正在使用 itextpdf.jar 创建 pdf。我搜索了解决方案,但我无法弄清楚。

最佳答案

try {
InputStream inputStream = MainActivity.this.getAssets().open(
"launchscreen.png");
Bitmap bmp = BitmapFactory.decodeStream(inputStream);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
Image signature;
signature = Image.getInstance(stream.toByteArray());
signature.setAbsolutePosition(400f, 150f);
signature.scalePercent(100f);
document.add(signature);
document.close();
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

希望对你有用。

关于android - 如何在 android 中使用 itext 库将图像放入 pdf 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23673047/

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