Export for NConvert... outputs incorrect code
Posted: Thu Mar 29, 2018 7:03 pm
Export for NConvert... .bat exported for the above settings is:
The NConvert Help file gives the syntax for Resize as:
In a batch file the '%' character must be doubled to '%%' to escape the character, so the expected exported code is:
Although the code actually exported runs, the syntax is incorrect.
The Code: Select all
nconvert -ratio -rtype lanczos -resize 50%%%% 50%%
Code: Select all
-resize w h : Scale width-height
w h can be percent (ex: -resize 100% 200%)
Code: Select all
nconvert -ratio -rtype lanczos -resize 50%% 50%%