Is there a way to convert doc FileStream to pdf filestream without loading the entire document into memory?
I have to deal with conversion up to 500MB documents. I’ve tried to use new Document(fileStream) but it looks like it still loads the entire document into memory during this call.
Also it looks like the document still remain in memory after conversion and saving using “Save(Stream stream, SaveOptions saveOptions)” method. Is there any way to dispose the Document object?