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.
try this, hope this will help you