Top "Python-imaging-library" questions

The Python Imaging Library (PIL) provides the Python language with a de-facto standard foundation for image work.

How do I draw text at an angle using python's PIL?

Using Python I want to be able to draw text at different angles using PIL. For example, imagine you were …

python python-imaging-library imaging
python PIL draw multiline text on image

I try to add text at the bottom of image and actually I've done it, but in case of my …

python image text python-imaging-library
Using the Image.point() method in PIL to manipulate pixel data

I am using the Python Imaging Library to colorize a black and white image with a lookup table that defines …

python image image-processing image-manipulation python-imaging-library
How do I open an image from the internet in PIL?

I would like to find the dimensions of an image on the internet. I tried using from PIL import Image …

python python-imaging-library urllib2
PIL thumbnail is rotating my image?

I'm attempting to take large (huge) images (from a digital camera), and convert them into something that I can display …

python python-imaging-library
how to save a pylab figure into in-memory file which can be read into PIL image?

new to PIL, but want to get a quick solution out of it. The following is my first shot which …

python python-imaging-library matplotlib
100x100 image with random pixel colour

I'm trying to make a 100x100 image with each pixel being a different random colour, like this example: I've tried …

python image matplotlib python-imaging-library draw
blurring an image using PIL in python

I have been trying to blur an image using the PIL. from what I know i need to copy the …

image python-3.x python-imaging-library pixel
PIL: Thumbnail and end up with a square image

Calling image = Image.open(data) image.thumbnail((36,36), Image.NEAREST) will maintain the aspect ratio. But I need to end up …

python png thumbnails python-imaging-library alpha
PIL Image mode "P" -> "RGBA"

This is my issue: import Image im = Image.open("1.png") im.show() print im.mode im.convert("RGBA").save("2.png") …

python python-imaging-library converter mode