Вопрос

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