Frage

i want to convert !

enter image description here

using imagick commandline operation

enter image description here

War es hilfreich?

Lösung

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top