이미지매직 벽지 만들기
- SMARTPHONE
- 2024-12-11
기본 도형만 있는 상태에서 배치 파일을 실행하면...
이렇게 사방 연속 이미지의 벽지 월페이퍼를 만들어주기
set width=1056
set height=576
set infile=heart.png
앞부분에서 생성하고 싶은 사이즈와 파일이름을 지정합니다.
set outfile=tiled_%infile%
convert %infile% -format "%%[fx:h/2]" info: > w.txt
set /p hh2=< w.txt
del w.txt
convert %infile% ( -clone 0 -roll +0+%hh2% ) +append -write mpr:cell +delete -size %width%x%height% tile:mpr:cell %outfile%
자동으로 tilted 가 붙은 벽지가 쫘악~~~
[COMMENT]나미|폰용으로 수정버전.width=1056height=576infile=wall_heart.pngoutfile=tiled_$infilehh2=`convert $infile -format "%[fx:h/2]" info:`convert $infile \( -clone 0 -roll +0+$hh2 \) +append -write mpr:cell +delete -size ${width}x${height} tile:mpr:cell $outfile[/COMMENT]
[OGTITLE]이미지매직 벽지 만들기[/OGTITLE]
이 글을 공유하기
-
2024-12-11
폰용으로 수정버전.width=1056height=576infile=wall_heart.pngoutfile=tiled_$infilehh2=`convert $infile -format "%[fx:h/2]" info:`convert $infile \( -clone 0 -roll +0+$hh2 \) +append -write mpr:cell +delete -size ${width}x${height} tile:mpr:cell $outfile