Is there some way to re-size an image added to the PDF report? The Image Height/Width properties are read-only. Thanks.
Hello dbishop9 ,
You can use AddContent method about adding the image to Itext.
http://help.infragistics.com/NetAdvantage/ASPNET/2011.1?page=Infragistics4.WebUI.Documents.Reports.v11.1~Infragistics.Documents.Reports.Report.Text.IText~AddContent(Image,Size).html
Report report = new Report();
ISection section1 = report.AddSection();
Infragistics.Documents.Graphics.Image img = this.GetImage(@"http://es.infragistics.com/App_Themes/Default/images/logo.gif");
IText imageText = section1.AddText();
imageText.AddContent(img, new Size(400, 400));
Let me know if you need further assistance regarding this
Thanks,
That did the trick. I was just passing the raw image to the group.addcontent method based on the online example. This makes everything much nicer. Appreciate it.