문제

i want to convert !

enter image description here

using imagick commandline operation

enter image description here

도움이 되었습니까?

해결책

For Imagemagick command line, use tile: & mpr: file formats, and -flip, -clone, & -append options.

convert face.png -scale 50x -flip \( -clone 0 -flip \) -append \
        -write mpr:tileflip +delete -size 200x200  \
        tile:mpr:tileflip output.png

enter image description here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top