Question
How do you save a pdf as optimized with IAC?
I have a C# console app I've written to batch process pdf's and save them out as optimized. The only problem is I haven't found a definitive answer to the correct nType to get an optimized file. Here is my code.
pdDoc.Save(1 + 32, impoFile);
I believe 1 is PDSaveFull and 32 is PDSaveCollectGarbage.
Should I be also saving PDSaveLinearized?
Thanks.
