I have this document generated using Pdfwriter. Everything fine.
But when adding an image, the background shows black in the document.
Image is JPG, and background is white. It shows fine in an imageview object.
this is the code segment
Dim imagen As Bitmap
imagen = LoadBitmapSample(FolderImagesLogo, "test.jpg",140,100)
imagen = f.CreateScaledBitmap(imagen, 140, 100,True)
PDFWriter1.addImage(243,(PaperSize.A4_HEIGHT - (100) - (31/1dip)),imagen)
Have anyone had this problem before?
Thanks