Hello,
I am using Aspose.Word java latest version (21.9) to convert txt to pdf.
When I run conversion in docker desktop on Windows, conversion completes without error.
When I run conversion in cloud (k8s) from the same docker file, conversion process stuck forever.
Can you please advice what can I do to get similar behavior in both docker environments?
Code used:
LoadOptions loadOptions = new LoadOptions();
loadOptions.setLoadFormat(LoadFormat.TEXT);
Document doc = new Document(source, loadOptions);
ByteArrayOutputStream target = new ByteArrayOutputStream();
doc.save(target, SaveFormat.PDF);
Thanks.