Search found 2 matches
- 2019-06-24T01:22:25-07:00
- Forum: MagickWand
- Topic: composite distort with multiple images input.
- Replies: 2
- Views: 77112
Re: composite distort with multiple images input.
Greatest thank you! I got it working. Python equivalent of this command line follows convert ./image.png ./hgrad.png ./vgrad.png -gravity center -compose distort -composite ./output.png from wand.image import Image img = Image(filename='image.png') hgrad = Image(filename='hgrad.png') vgrad = Image ...
- 2019-06-23T19:09:21-07:00
- Forum: MagickWand
- Topic: composite distort with multiple images input.
- Replies: 2
- Views: 77112
composite distort with multiple images input.
Hi, I use Python's Wand interface. I'm trying to get an equivalent of the composite distort method as it's described here http://www.imagemagick.org/Usage/mapping/#compose_distort . The original convert program takes 3 images on input convert koala.gif map_compress.gif map_compress_y.gif \ -compose ...