Incomplete processing ... file left as filename.jp_
Posted: Mon Feb 08, 2016 6:28 pm
I've been testing out NConvert as a solution to a project where rotating images is needed. It seems that on occasion the image temp file created is not completed as it remains in the .jp_ state. Are there any suggestions on how to look further into this or a known solution?
These are the arguments passed ...
<CFSET VARIABLES.arguments = "-out jpeg -jpegtrans rot90 -rotate 90 -overwrite" />
This is the Coldfusion execution ...
<CFEXECUTE NAME="#VARIABLES.imageConverter#" TIMEOUT="20" ARGUMENTS="#VARIABLES.arguments# #VARIABLES.imageSource#" VARIABLE="result"></CFEXECUTE>
UPDATE ...
changed arguments to "-out jpeg -jpegtrans rot90 -rotate 90 -overwrite -no_auto_ext" and it seems after about 50 or so rotation calls that this works but if anyone knows why when "-no_auto_ext" isn't used it randomly doesn't complete the update leaving files with the extension .jp_ .. I'd still like to know.
These are the arguments passed ...
<CFSET VARIABLES.arguments = "-out jpeg -jpegtrans rot90 -rotate 90 -overwrite" />
This is the Coldfusion execution ...
<CFEXECUTE NAME="#VARIABLES.imageConverter#" TIMEOUT="20" ARGUMENTS="#VARIABLES.arguments# #VARIABLES.imageSource#" VARIABLE="result"></CFEXECUTE>
UPDATE ...
changed arguments to "-out jpeg -jpegtrans rot90 -rotate 90 -overwrite -no_auto_ext" and it seems after about 50 or so rotation calls that this works but if anyone knows why when "-no_auto_ext" isn't used it randomly doesn't complete the update leaving files with the extension .jp_ .. I'd still like to know.