Add HTMT image in word file :- Technical issue

This is the HTML text:

What is:<img border="0" alt="" align="center" src="/SharedWorkSpace/ACF/Uploads/PRMIA-Exam2Eqn1.gif" width="82" height="49" /> ?

When i transfer it into word file, imgae didnt display in file. Could you please tell me how to add this image

Hi
Thanks for your inquiry. Please make sure that the image exists on the following path. Maybe you should use full path instead of relative.
I use the following code for testing:

// Create document and DocumentBuidler object
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
 
// Insert HTML.
string html =
@"<table>
    <tr>
        <td>
            <img src='C:\Temp\img.jpg' />
        </td>
    </tr>
</table>";
builder.InsertHtml(html);
 
doc.Save(@"C:\Temp\out.doc");

Best regards,