Skip to content

이미지를 정사각형으로 만드는 batch

2016.10.22 20:12

WHRIA 조회 수:1177

@echo off

call :treeProcess

goto :eof

 

:treeProcess

rem Do whatever you want here over the files of this subdir, for example:

for %%f in (*.jpg) do (

c:\imagemagick\convert "%%f"   -set option:distort:viewport "%%[fx:min(w,h)]x%%[fx:min(w,h)]+%%[fx:max((w-h)/2,0)]+%%[fx:max((h-w)/2,0)]" -filter point -distort SRT 0  +repage "%%f"

)

 

for /D %%d in (*) do (

    cd %%d

    call :treeProcess

    cd ..

)

exit /b

Powered by Xpress Engine / Designed by Sketchbook

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소