ItextSharp resizing images

  • Thread starter Thread starter Josh
  • Start date Start date
J

Josh

When I add an image into the pdf it gets bigger. How can I stop this?

All ideas welcome, thanks
 
iTextSharp.text.Image jk;
jk=iTextSharp.text.Image.getInstance("C:\\some_picture.jpg");
jk.scalePercent(30);
 
Back
Top