I successfully managed to create a pdf file using iTextSharp with a table inside it. I am trying to add in on top a letterhead image from inside the drawable folder
I have tried to add it using
iTextSharp.text.Image _image = iTextSharp.text.Image.GetInstance(Resource.Drawable.LetterHead);
But i get an error cannot convert 'int' to 'iTextSharp.text.Image'
Thank you in advance...