iText, FileNotFoundException when adding image to pdf

794 Views Asked by At

I am trying to add an image to my pdf using iText and when following the iTexts documentation on this its just simply telling me to do this:

Image img = Image.getInstance("res/drawable/toplogos.png");
document.add(img);

But I am getting FileNotFoundException. Why is that? The file is in the drawable folder.

Thanks.

1

There are 1 best solutions below

3
On BEST ANSWER

try this, hope this will help you

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