Taking Time on Saving Word Doc in PDF

Please check code below:

private void docxConvert2pdf(com.aspose.words.Document asposeDoc, OutputStream outputStream) throws Exception {
        PerformanceTimer timer = new PerformanceTimer();
        asposeDoc.save(outputStream, SaveFormat.PDF);
        LOG.debug(timer.showTimeTaken("PDF conversion : convert / save to PDF"));
    }

Please let me know how can we improve performance here

@shivp Rendering time depend on the document size and complexity. Could you please attach your document here for testing? We will check the issue and provide you more information.