Python Imaging Library, also known as PIL, adds image processing capabilities to your Python interpreter.

learn more… | top users | synonyms (2)

48
votes
7answers
22k views

Image library for Python 3

What is python-3 using instead of PIL for manipulating Images?
69
votes
6answers
32k views

How do I resize an image using PIL and maintain its aspect ratio?

Is there an obvious way to do this that I'm missing? I'm just trying to make thumbnails.
43
votes
5answers
19k views

The problem with installing PIL using virtualenv or buildout

When I install PIL using easy_install or buildout it installs in such way, that I must do 'import Image', not 'from PIL import Image'. However, if I do "apt-get install python-imaging" or use "pip -E ...
19
votes
5answers
15k views

how to install PIL on mac os x 10.7.2 Lion

I've tried googling & looking up some other people's questions. However, I still couldn't find a clear/simple recipe to install PIL (for python 2.6 or 2.7) on mac os x 10.7.2 Lion. Can someone ...
27
votes
4answers
13k views

python image recognition

what I want to do is a image recognition for a simple app: given image (500 x 500) pxs ( 1 color background ) the image will have only 1 geometric figure (triangle or square or smaleyface :) ) of ...
29
votes
8answers
17k views

Python: The _imagingft C module is not installed

I've tried lots of solution that posted on the net, they don't work. >>> import _imaging >>> _imaging.__file__ 'C:\\python26\\lib\\site-packages\\PIL\\_imaging.pyd' >>> ...
24
votes
2answers
22k views

PIL and numpy

Alright, I'm toying around with converting a PIL image object back and forth to a numpy array so I can do some faster pixel by pixel transformations than PIL's PixelAccess object would allow. I've ...
12
votes
5answers
9k views

Using PIL to make all white pixels transparent?

I'm trying to make all white pixels transparent using the Python Image Library. (I'm a C hacker trying to learn python so be gentle) I've got the conversion working (at least the pixel values look ...
17
votes
5answers
6k views

Resize image in Python without losing EXIF data

I need to resize jpg images with Python without losing the original image's EXIF data (metadata about date taken, camera model etc.). All google searches about python and images point to the PIL ...
18
votes
4answers
9k views

Converting a PDF to a series of images with Python

I'm attempting to use Python to convert a multi-page PDF into a series of JPEGs. I can split the PDF up into individual pages easily enough with available tools, but I haven't been able to find ...
6
votes
3answers
3k views

How to reduce color palette with PIL

I'm not sure how I would go about reducing the color palette of a PIL Image. I would like to reduce an image's palette to the 5 prominent colors found in that image. My overall goal is to do some ...
5
votes
3answers
3k views

Detecting thresholds in HSV color space (from RGB) using Python / PIL

I want to take an RGB image and convert it to a black and white RGB image, where a pixel is black if its HSV value is between a certain range and white otherwise. Currently I create a new image, then ...
8
votes
2answers
2k views

Changing image hue with Python PIL

Using Python PIL, I'm trying to adjust the hue of a given image. I'm not very comfortable with the jargon of graphics, so what I mean by “adjusting hue” is doing the Photoshop operation called ...
6
votes
3answers
4k views

In Python, how do I read the exif data for an image?

I'm using PIL. How do I turn the EXIF data into a dictionary of stuff?
42
votes
8answers
36k views

Installing PIL (Python Imaging Library) in Win7 64 bits, Python 2.6.4

I'm trying to install said library for use with Python. I tried downloading the executable installer for Windows, which runs, but says it doesn't find a Python installation. Then tried registering ...
27
votes
12answers
29k views

Installing Python Imaging Library (PIL) on Snow Leopard with updated Python 2.6.2

I have a fresh install (started with a wiped drive) of Snow Leopard with the developer tools installed during the Snow Leopard installation. I then installed Python 2.6.2, replacing the Snow Leopard ...
23
votes
4answers
21k views

Python PIL: how to write PNG image to string

I have generated an image using PIL. How can I save it to a string in memory? The Image.save() method requires a file. I'd like to have several such images stored in dictionary.
24
votes
3answers
12k views

Need help with a PIL Error — IOError: decoder zip not available

I am getting the: IOError: decoder zip not available when I try to draw an image and save to a jpeg in PIL. Any thoughts on how to resolve this? PIL has worked fine for me in the past, when it comes ...
12
votes
3answers
10k views

How to read a raw image using PIL?

I have a raw image where each pixel corresponds to a 16 bits unsigned integer. I am trying to read using the PIL Image.fromstring() function as in the following code: if __name__ == "__main__": ...
2
votes
3answers
404 views

Comparing image in url to image in filesystem in python

Is there a quick and easy way to do such comparison? I've found few image compare questions from stackoverflow but none of those actually proved answer for this question. I have images files in my ...
18
votes
7answers
5k views

How to install PIL on Mac OSX 10.5.8 for Google App Engine?

I need to get PIL installed locally to test GAE's images api in my local environment. I grabbed the PIL 1.1.6 installer for Mac, and when I go to select the destination (when installing), I get the ...
2
votes
1answer
2k views

PIL Installation Fails missing:stdarg.h [duplicate]

Possible Duplicate: Installing Python Imaging Library (PIL) on Snow Leopard with updated Python 2.6.2 Runing MAC 10.7.2 While trying to install PIL, after resolving many gcc issues, the ...
0
votes
1answer
2k views

Image.frombuffer with 16-bit image data

If my windows is in 32-bit color depth mode, then the following code gets a nice PIL Image from a window: def image_grab_native(window): hwnd = win32gui.GetDesktopWindow() left, top, right, ...
12
votes
3answers
4k views

How to use PIL to resize and apply rotation EXIF information to the file?

I am trying to use Python to resize picture. With my camera, files are all written is landscape way. The exif information handle a tag to ask the image viewer to rotate in a way or another. Since ...
7
votes
1answer
4k views

How do I generate circuar thumbnails with PIL?

How do I generate circular image thumbnails using PIL? The space outside the circle should be transparent. Snippets would be highly appreciated, thank you in advance.
14
votes
9answers
8k views

Installing PIL to use with Django on Mac OS X

I'm really annoyed by installation of PIL (Python Imaging Library) on Mac OS X 10.6. Does anyone have it installed and could post the recipe here? I've tried a lot of them posted here on this site and ...
13
votes
4answers
4k views

Convert RGBA PNG to RGB with PIL

I'm using PIL to convert a transparent PNG image uploaded with Django to a JPG file. The output looks broken. Source file Code Image.open(object.logo.path).save('/tmp/output.jpg', 'JPEG') or ...
9
votes
4answers
10k views

How do I create an OpenCV image from a PIL image?

I want to do some image processing with OpenCV (in Python), but I have to start with a PIL Image object, so I can't use the cvLoadImage() call, since that takes a filename. This recipe (adapted ...
6
votes
3answers
3k views

How do I convert any image to a 4-color paletted image using the Python Imaging Library?

I have a device that supports 4-color graphics (much like CGA in the old days). I wanted to use PIL to read the image and convert it using my 4-color palette (of red, green, yellow, black), but I ...
14
votes
2answers
4k views

How to merge a transparent png image with another image using PIL

I have a transparent png image "foo.png" and I've opened another image with im = Image.open("foo2.png"); now what i need is to merge foo.png with foo2.png. ( foo.png contains some text and I ...
6
votes
2answers
2k views

Python: Converting GIF frames to PNG

I'm very new to python, trying to use it to split the frames of a GIF into PNG images. # Using this GIF: http://www.videogamesprites.net/FinalFantasy1/Party/Before/Fighter-Front.gif from PIL import ...
6
votes
3answers
1k views

Python ctypes MemoryError in fcgi process from PIL library

I'm trying to run Django on shared hosting (Bluehost). I'm using functionality that requires PIL. PIL imports and works from an interactive shell, but in my fcgi process it crashes with a MemoryError ...
2
votes
2answers
1k views

Image Cropping using Python

I am new to Python coding and I am writing a program in which I will be cropping an entered image and then saving it in a location. Now, I am being able to do this using a combination of PIL and ...
1
vote
1answer
1k views

PIL crop and paste problem: Cropping doesn't create a cropped image

I'm trying to crop an image and then paste the cropped image into the centre of another image. Ideally I'd like the cropped image to be smaller than the image its being pasted on so that there is a ...
4
votes
1answer
1k views

Python imaging library show() on Windows

I am working on a script that downloads various image files from the web and then does some processing on them using the PIL. The script uses urlretreive to dump the images to temporary files, and ...
18
votes
4answers
6k views

Installing PIL on OS X Snow Leopard w/Xcode4 (no PPC support)

Xcode4 dropped PPC support, so when I try building PIL, it throws hate: Bens-MacBook-Air:Imaging-1.1.7 bkeating$ python setup.py build running buildrunning build_pyrunning build_ext --- using ...
27
votes
4answers
8k views

decoder JPEG not available PIL

PIL does support JPEG in my system. But when I upload a JPEG file, it throws "decoder JPEG not available error". How can I resolve this?
10
votes
5answers
6k views

install pil on virtualenv with libjpeg

Currently I'm installing PIL into my virtual env as follows: pip install -E . -r ./releases/%s/requirements.txt where requirements.txt contains: pil I can upload png images but not jpeg images ...
9
votes
3answers
10k views

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 drawing the number around the face of a clock. The number 3 would appear as expected whereas ...
15
votes
3answers
7k views

Python Imaging Library - Text rendering

I'm trying to render some text using PIL, but the result that comes out is, frankly, crap. For example, here's some text I wrote in Photoshop: and what comes out of PIL: As you can see, the ...
5
votes
3answers
3k views

With the Python Imaging Library (PIL), how does one compose an image with an alpha channel over another image?

I have two images, both with alpha channels. I want to put one image over the other, resulting in a new image with an alpha channel, just as would occur if they were rendered in layers. I would like ...
4
votes
5answers
7k views

PIL Best Way To Replace Color?

I am trying to remove a certain color from my image however it's not working as well as I'd hoped. I tried to do the same thing as seen here ...
14
votes
4answers
3k views

How to send image generated by PIL to browser?

I'm using flask for my application. I'd like to send an image (dynamically generated by PIL) to client without saving on disk. Any idea how to do this ?
10
votes
1answer
2k views

Scaling images stored at S3

I'm in a situation where I need to push image storage for a number of websites out to a service that can scale indefinitely (S3, CloudFiles, etc.). Up until this point we've been able to allow our ...
25
votes
2answers
9k views

gcc error trying to install PIL in a Python2.6 virtualenv

I have created a virtualenv with the --no-site-packages option. I get an error trying to install PIL: http://pastebin.com/SVqxs1sC ... error: command '/usr/bin/gcc' failed with exit status 1 ...
16
votes
6answers
8k views

Installing PIL with JPEG support on Mac OS X

I posted a question before regarding this subject, and read other ones posted before, but none has successfully solved my problem. I am trying to install PIL on Mac OS X Lion, as I need it for a ...
9
votes
3answers
2k views

What processing steps should I use to clean photos of line drawings?

My usual method of 100% contrast and some brightness adjusting to tweak the cutoff point usually works reasonably well to clean up photos of small sub-circuits or equations for posting on E&R.SE, ...
7
votes
3answers
12k views

Getting list of pixel values from PIL

Guys, I'm looking for a bit of assistance. I'm a newbie programmer and one of the problems I'm having at the minute is trying to convert a black & white .jpg image into a list which I can then ...
16
votes
2answers
3k views

pip install PIL -E TICKETS-1 - No JPEG/PNG support

I'm using Ubuntu and VitualEnv for my Django project. I have PIL library installed using Synaptic Package Manager and it is working fine. But when I create an VitrualEnv and try to install PIL using ...
6
votes
2answers
1k views

Image embossing in Python with PIL — adding depth, azimuth, etc

I am trying to emboss an image using PIL. PIL provides a basic way to emboss an image ( using ImageFilter.EMBOSS). In image editing packages like GIMP, you can vary parameters like Azimuth, depth ...

1 2 3 4 5