@alexey.maslov Thanks for the update. What’s the ETA for 25.5?
Do these cases get expedited if we have a paid support service?
@alexey.maslov Thanks for the update. What’s the ETA for 25.5?
Do these cases get expedited if we have a paid support service?
@jaipm 25.5 version of Aspose.Words for Java will be published somewhere in the middle of May.
Once you get license for paid support, you can escalate the issue in paid support, this will push the issue upper in the queue.
Thanks, I was trying to find Version 25.4 but could only see 25.3 at Aspose.Total | Java Class Libraries to Process File Formats
@jaipm You can get 25.4 version of Aspose.Words for java from here:
https://releases.aspose.com/words/java/
Hello @alexey.maslov , what is the ETA for the version 25.5?
Are WORDSJAVA-3075 and WORDSNET-28136 still on track to be delivered as part of 25.5?
@jaipm WORDSJAVA-3075 is already resolved. The fix will be included into the next 25.5 version of Aspose.Words for Java.
WORDSNET-28136 is currently in analysis.
@jaipm We are working on Java release right now. If everything goes smoothly it will be published this week. We will keep you updated.
The issues you have found earlier (filed as WORDSJAVA-3075) have been fixed in this Aspose.Words for Java 25.5 update.
@alexey.noskov Thanks for releasing 25.5. Do I need to make any code changes to handle TIFF issue or simply updating the aspose.words to 25.5 is sufficient ?
The issue was that rendering images using JAI took a significant amount of time. This is an internal limitation of JAI, so we added an option to disable JAI during rendering. You will need to update the library and add the following lines:
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setUseJAIImageRendering(false);
Please note that disabling JAI may affect rendering quality in certain scenarios. If needed, you can re-enable it using:
saveOptions.setUseJAIImageRendering(true);