Hi,
the following IEVision code (executed in a Windows Service application) creates a non empty but inaccessable PDF file with empty security properties:
mBmp := TIEMultiBitmap.create(SourcePath);
mBmp.CreateSearchablePDF(DestinationPath, 'PDF title', OCR_English_Language, ievOCRAuto, ievPDFImgFmt_AUTO, TessDataPath);
mBmp.Free;
Trying to open this PDF file causes the error message "Access to *.pdf was denied".
Does anybody got an idea why the created PDF file is inaccessable?
Ale