Hello,
Using aspose words i need to exportimages to one file so i have the following saveoptions call:
var options = new Aspose.Words.Saving.SvgSaveOptions()
{
ExportEmbeddedImages = true,
TextOutputMode = Aspose.Words.Saving.SvgTextOutputMode.UsePlacedGlyphs,
OptimizeOutput = true,
};
doc.Save(outputStream,options);
I need all of these settings except OptimizeOutput which doesnt make a difference. How can i reduce render time significantly? We typically have 3-4 page resumes that may or may not contain images.
we need a solution that can handle anything.