// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.write("Here is an SVG image: "); builder.insertHtml(" "); HtmlSaveOptions options = new HtmlSaveOptions(); options.setMetafileFormat(HtmlMetafileFormat.SVG); dataDir = dataDir + "ExportSVGinHTML_out.html"; doc.save(dataDir, options);