Page 1 of 1

Export for NConvert... outputs incorrect code

Posted: Thu Mar 29, 2018 7:03 pm
by cday
Clipboard01.png
The Export for NConvert... .bat exported for the above settings is:

Code: Select all

nconvert -ratio -rtype lanczos -resize 50%%%% 50%%  
The NConvert Help file gives the syntax for Resize as:

Code: Select all

-resize w h      : Scale width-height
              w h can be percent (ex: -resize 100% 200%)
In a batch file the '%' character must be doubled to '%%' to escape the character, so the expected exported code is:

Code: Select all

nconvert -ratio -rtype lanczos -resize 50%% 50%%  
Although the code actually exported runs, the syntax is incorrect.

Re: Export for NConvert... outputs incorrect code

Posted: Tue Apr 03, 2018 7:15 am
by xnview
:bugconfirmed: Thanks to your detailed description I can reproduce the problem.