I am uploading pdf files to our server and want to save space. I am trying to use cfpdf to optimize the file size. The one I am testing on is 1.25MB, so it's not a big file. When I reduce it using desktop Acrobat it takes less than 1 second. When I use Coldfusion it times out after several minutes.
The file is first uploaded to it's own directory, then I use this to try to reduce it.
<cfpdf
action = "optimize"
source = "H:\Inetpub\Wwwroot\MySite.com\newsletters\files\#Section#\#issue#.pdf"
algo = "bilinear" />
I'm sure it's something I've done wrong, please advise.