I have an Image, I\'d like to replace all the pixels of one color with those in a different color, what is the simplest way to go about that?
I\'m drawing a bunch of lines with the Python Imaging Library\'s ImageDraw.line(), but they look horrid since I can\'t find a way to anti-alia开发者_运维百科s them. How can I anti-alias lines in PIL?T
I am at wit\'s end. I have a working install of python 2.6.5 with numpy and scipy. I want to use it to do some simple PCA which requires importing images. Well, I figured PIL was the way to go for thi
I\'m trying to grab a screenshot every 30 seconds and display it on my GUI, heres what I\'ve got so far.
I have PIL (Python imaging library) installed. When I run Python: import PIL import Image import 开发者_开发百科_imaging
I\'m trying to write a small graphic application, and I need to construct some image using PIL that I show in a widget.
I am tring to use the function ImageChops.dulpicate from the PIL module and I get an error I don\'t understand:
I have created a virtualenv with the --no-site-packages option. I get an error trying to install PIL:
I have two questions regarding python libraries: I would like to know if there is something like a \"super\" python library which lets me install ALL or at least all scientific useful python librari
I want to generate a dynamically created png image with Pycairo and serve it usign Django. I read this: Serve a dynamically generated image with Django.