Code: Select all
nConvert.exe -out tiff -multi -binary nodither -c 7 -rMeta %1Code: Select all
nConvert.exe -out tiff -multi -binary nodither -c 7 -rMeta %1Code: Select all
nConvert.exe -out tiff -o out.tif -multi -binary nodither -c 7 -rMeta file1.tif file2.tifYou can list the files to be processed, as above, or use a filelist (-l option) or use *.jpg, which would probably be the usual way to process a number of files in a folder...xnview wrote:Something like that?Code: Select all
nConvert.exe -out tiff -o out.tif -multi -binary nodither -c 7 -rMeta file1.tif file2.tif
Code: Select all
@echo off
set nPATH=C:\Program Files\XnView
:GetFile
  set Test=%~1
  if "%Test%"=="" goto :JoinFiles
  "%nPATH%\nConvert.exe" -out tiff -o "temp_%~nx1.tif" -multi -binary nodither -c 7 -rMeta %1
  shift
  goto :GetFile
:JoinFiles
  if not exist temp_*.tif goto :Checkout
  "%nPATH%\nConvert.exe" -out tiff -o "OUTPUT.tif" -multi -binary nodither -c 7 -rMeta temp_*.tif
  del temp_*.tif
:Checkout
  echo DONE
  pause