Предлагаете угадать параметры конвертации Вашего PS нам? ОкТак я ж и спрашиваю, как сделать...
Код:
@echo off
setlocal enabledelayedexpansion
chcp 1251 > nul
set argCount=0
for %%x in (%*) do (
set /A argCount+=1
set "argFnIn[!argCount!]=%%~x"
set "argFnOut[!argCount!]=%%~dpnx.tif"
)
for /L %%i in (1,1,%argCount%) do echo convert !argFnIn[%%i]! to !argFnOut[%%i]! & "c:\ProgramPortable\ImageMagick_Q8-x64\magick.exe" "!argFnIn[%%i]!" -black-point-compensation -intent Relative -profile "c:\Windows\System32\spool\drivers\color\ISOcoated_v2_300_eci.icc" "!argFnOut[%%i]!"