Converting Word document with Bullet Points slows conversion

Hello,

We are using Aspose.PDF (v3.6.1) to convert Word documents to PDF, we have noticed that adding bullet points in the word document seems to significantly increase the time taken to convert the document into PDF.

Is there a fix/workaround for this problem or any plans to fix this.

Many thanks,

Barsana

Hi,

Thank you for considering Aspose.

Have you tried to add the following two lines before Save Method.

pdf.IsTruetypeFontMapCached = true;

pdf.TruetypeFontMapPath = Path.GetTempPath();

Hope it helps.

Thanks.