Hello

I hope this is the right place to write my question.

I am trying to use Imagemagick in a python game, in order to do image
skewing (I wasn't able to find skewing anywhere else in python).

I have installed it via apt (vesrion 0.7-3build1) in Ubuntu and it works
fine.

However, I cannot find any examples, in order to see how to use it. So
far, I have only been able to do sth like this:

###########################
import PythonMagick

i = PythonMagick.Image('flower.png')
i.format = 'PNG'
i.gaussianBlur( 5.0, 0.0)
i.transformSkewX(25.0)
i.write('flip.png')
###########################


The gaussianBlur works fine, but I can't make transformSkewX to work. If
you have any ideas or any helpful links, I would be grateful!

Regards
Vangelis



_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to