Hi,
We are using Aspose.Slides.NET.22.4.0 and we noticed that when having custom line spacing, the text does not look ok, as is in the input file, after converting the Pptx to Html5. This issue does not reproduce when converting to Html.
This is the code I am using:
using (Presentation presentation = new Presentation(pptxInputFilePath))
{
HtmlOptions options = new HtmlOptions
{
HtmlFormatter = HtmlFormatter.CreateDocumentFormatter("", false)
};
presentation.Save($"{folderName}\\{fileName}_svg.html", SaveFormat.Html, options);
presentation.Save($"{folderName}\\{fileName}_html5.html", SaveFormat.Html5, new Html5Options
{
AnimateShapes = false,
AnimateTransitions = false
});
}
I am attaching the input file and the output files created after conversion to both Html5 and Html.
Thank you!
PptxOutputFiles.zip (28.7 KB)
multilevel-bullets.zip (34.3 KB)