Maximum File Size When Reducing a PDF file in PDFTools
I have downloaded the PDFTools SDK and sample projects, and have it functional in my test application.
It works good for some files, but when I try to reduce the size of a PDF that is large I get this error Message:
"Total input file(s) size exceeds the acceptable limit"
I've been hunting through the documentation and google, and haven't figured out anything about this.
Is it just a licensing thing, and will be better when I pay for the license?
If not, is there anywhere that documents how big of a file I can process?
Dim sourceFileRef as FileRef
sourceFileRef = FileRef.CreateFromLocalFile(pdfFilePath)
compressPDFOperation.SetInput(sourceFileRef)
result = compressPDFOperation.Execute(executionContext)
result.SaveAs(Directory.GetCurrentDirectory() + "/output/" & pdfFileInfo.Name)
