I am using aspose word ver 9.7.0.0 to generate word document.
I have a table with multiple row and multiple column define in word template
I am cloning the table and trying to add an html image in a cell using InsertHTML method.
Image is getting inserted but the issue is image is shrinking and not coming in its original size.
I have written following code.
Cell cComments = responseRow.Cells[3];
builder.CellFormat.VerticalAlignment = CellVerticalAlignment.Top;
cComments.FirstParagraph.ParagraphFormat.Alignment = ParagraphAlignment.Left;
cComments.CellFormat.VerticalAlignment = CellVerticalAlignment.Top;
builder.MoveTo(cComments.FirstParagraph);
string html = @"
builder.InsertHtml(html);
builder.InsertNode(new Run(oDoc, ControlChar.LineBreak));
Please see attached images for table structure and original image