Hi
Thank you for your interest in Aspose.Words. Yes, Aspose.Words allow convert HTML to word document. You can use the following code.
Document doc = new Document("in.html");
doc.Save("out.doc", SaveFormat.Doc);
Also you can insert html into the document (including pictures).
//Create document
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
//Create HTML string
string someHtml = "<img src='http://images.amazon.com/images/G/03/videogames/features/TestDrive_PC_big_2.jpg' border='0' />";
//Insert HTML
builder.InsertHtml(someHtml);
//Save document
doc.Save(@"Test009\out.doc");
I hope this could help you.
Best
regards.