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 = "
- this is sample test.
- this is second test.
- third line
http://10.11.164.232:8092/Uploads/propscilogo.GIF" width=251 height=59>
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