Hello
Thanks for your request. Let me clarify; if
you try converting your document to DOC format using the code below, you will
see that your <input type='text'
/> and <input type='submit'/>
are converted to FORMTEXT and MACROBUTTON – it is
expected behavior. After converting your HTML to TIFF, you should see MACROBUTTON
as [Submit] – it is expected behavior too. You do no see FORMTEXT
because it is empty and it is expected.
It is extremely difficult and often
impossible to produce image which looks exactly as source HTML. HTML is
designed for Web and not for displaying as image.
Document doc = new Document("C:\\Temp\\in.htm");
doc.Save("C:\\Temp\\out.doc");
doc.Save("C:\\Temp\\out.tif");
Best regards,
Andrey Noskov
Developer/Technical Support
Aspose Auckland Team