iam getting html text and image in string builder in below code…By using oDocBuilder.InsertHtml iam writing html text to word document…now how to write Html image to word document using Aspose.words?
StringBuilder oSB="<p>Test Global....!! update again<input style=\"width: 81px; height: 66px\" type=\"image\" alt=\"\" src=\"http://ust/SelectImage.aspx?ImageID=29\" /></p>"
var oCurrentDoc=new document;
oDocBuilder = new DocumentBuilder(oCurrentDoc);
oDocBuilder.InsertHtml(oSB.ToString());
how to write html image and content to word document using aspose.words?