Are there any details of what this fix actually does? Is the total memory usage reduced, or some disc-paging system implemented?
If we were getting out of memory errors, are we now less likely to?
Thanks.
Are there any details of what this fix actually does? Is the total memory usage reduced, or some disc-paging system implemented?
If we were getting out of memory errors, are we now less likely to?
Thanks.
Document doc = new Document(MyDir + "in.docx");
PdfSaveOptions options = new PdfSaveOptions();
options.MemoryOptimization = true;
doc.Save(MyDir + "Out v17.2.0.pdf", options);