I was searching searching for a pure python module
which has functionality equalent to PHP GD library. I need to write text on a image file. I know PHP GD library can do that. Does any one know about such module in python too.
views:
30answers:
1
+3
A:
Yes: the Python Imaging Library or PIL. It's used by most Python apps which need to do image processing.
Chris Adams
2010-10-15 15:07:44
I've used PIL for exactly what @Idlecool is asking about.
Nathon
2010-10-15 15:20:44
is it a pure python module.. i can see c files inside it..
Idlecool
2010-10-15 15:26:21
No - it's a compiled C module. Among other things that means it won't work with something like Jython or IronPython but it's much faster than a pure Python implementation.
Chris Adams
2010-10-15 18:52:33