0

Are there any good tools or libraries that do image effects similar to Photo Booth on OS X? It doesn't have to be live, just applying the effect to an image would be enough. As a bonus: python bindings preferred.

ian93
  • 1,488
  • 4
  • 24
  • 37

1 Answers1

0

What about image magick ?

It does a lot of effect, is Python compliant and can do way more than what you aim at. You can use it in console or through the api.

Example of effects (sepia included)

With it, you can distort, blur, watermark, . . . whatever you want :)

It supports a lot of languages, and there is even a port to android on github

jlengrand
  • 12,152
  • 14
  • 57
  • 87