Hi,
We have upgraded the product to v6.4 and observed that image size is increasing in generated pdf. Image is displaying correctly in html view but size is increasing in pdf document. We are using following code:
string comments = "<OL><LI><STRONG><FONT color=#ff0000>this is sample test.</FONT></STRONG></LI><LI><EM><FONT size=5 face="Courier New">this is second test.</FONT></EM></LI><LI>third line</LI></OL><P><IMG src="http://10.11.164.232:8092/Uploads/propscilogo.GIF" width=251 height=59></P>";
TextInfo textinfoComment = new TextInfo();
textinfoComment.Alignment = AlignmentType.Justify;
Aspose.Pdf.Table tab14 = new Aspose.Pdf.Table();
tab14.DefaultCellPadding = margin;
tab14.ColumnWidths = "5% 95%";
Row row00 = tab14.Rows.Add();
Cell cell = row00.Cells.Add("Conclusion");
cell.ColumnsSpan = 2;
cell.DefaultCellTextInfo = textinfo;
Text commentText = new Text(comments);
commentText.IsHtmlTagSupported = true;
Row row20 = tab14.Rows.Add();
row20.Cells.Add("");
Aspose.Pdf.Cell cell2 = row20.Cells.Add();
cell2.DefaultCellTextInfo = textinfoComment;
cell2.Paragraphs.Add(commentText);
section.Paragraphs.Add(tab14);
Regards,
Surya