Has anyone else run into issues with PDF manipulat...
# cfml-general
c
Has anyone else run into issues with PDF manipulation after moving to CF2021? I can no longer rotate a single page of a multi-page document. It returns an error that "Coldfusion could not delete the file", which I'm assuming to mean that it's creating a temp file with the rotated page and then trying to delete the source and replace with new temp file. This was working great on CF2016. It seems to work fine when rotating the entire document.
Copy code
cfpdf(action="transform", source="#inPath#", pages="1", rotation="180");