user3335960
user3335960

Reputation: 875

Imagick Commandline flip image

i want to convert !

enter image description here

using imagick commandline operation

enter image description here

Upvotes: 1

Views: 556

Answers (1)

emcconville
emcconville

Reputation: 24419

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

Upvotes: 1

Related Questions