composite distort with multiple images input.
Posted: 2019-06-23T19:09:21-07:00
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/mappin ... se_distort .
The original convert program takes 3 images on input
but the related Image.composite() function is able to process only two images at once. I tried to use double composite() call, but results weren't correct.
Is there a way to call compose distort from the Python code?
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/mappin ... se_distort .
The original convert program takes 3 images on input
Code: Select all
convert koala.gif map_compress.gif map_compress_y.gif \
-compose Distort -define compose:args=37.5x37.5 -composite \
distort_compose.gif
Is there a way to call compose distort from the Python code?