我正在尝试使用iText将图像添加到我的pdf中,当关注iTexts文档时,它只是告诉我这样做:
Image img = Image.getInstance("res/drawable/toplogos.png");
document.add(img);
但是我收到了FileNotFoundException。这是为什么?该文件位于drawable文件夹中。
感谢。
答案 0 :(得分:1)
试试这个,希望这会对你有所帮助
Drawable d = getResources().getDrawable(R.drawable.toplogos)
BitmapDrawable bitDw = ((BitmapDrawable) d);
Bitmap bmp = bitDw.getBitmap();
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
Image image = Image.getInstance(stream.toByteArray());
document.add(image);