Using given snippest I convert word file to html but bullet size is getting change in html
void convertHTML()
{
Aspose.Words.License licWord = new Aspose.Words.License();
string strLicenscePath = "D:\\ConsoleApp\\ADDTaskPaneinOneDrive\\Resource\\Aspose.Words.lic";
licWord.SetLicense(strLicenscePath);
Aspose.Words.Saving.HtmlFixedSaveOptions options = new HtmlFixedSaveOptions()
{
AllowEmbeddingPostScriptFonts = true,
PrettyFormat = false,
ShowPageBorder = true,
ExportEmbeddedCss = true,
ExportEmbeddedFonts = true,
ExportEmbeddedImages = true,
ExportEmbeddedSvg = true,
UseHighQualityRendering = false,
FontFormat = ExportFontFormat.Ttf,
OptimizeOutput = true,
MemoryOptimization = true
};
Document sourceDoc = new Aspose.Words.Document(@"C:\\ABC\\jpatel\\Desktop\\TestSize.docx");
sourceDoc.Save(@"C:\\Users\\ABC\\Desktop\\BulletSize1.html", options);
}
TestSize.docx (16.6 KB)
BulletSize1.png (10.2 KB)
BulletSizeChange.png (76.1 KB)
Expected Output AS SoureceDocument.png (38.8 KB)
Expected Output AS SoureceDocument1.png (10.3 KB)