Tagged Questions

Python Imaging Library

learn more… | top users | synonyms

25
votes
11answers
22k 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 ...
20
votes
3answers
6k 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 ...
20
votes
5answers
10k 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.
18
votes
2answers
5k views

Image library for Python 3

What is python-3 using instead of PIL for manipulating Images?
16
votes
4answers
7k 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 ...
14
votes
6answers
2k 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 ...
14
votes
8answers
14k 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 ...
12
votes
5answers
4k 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 ...
12
votes
4answers
5k 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 ...
11
votes
5answers
4k 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 ...
11
votes
2answers
6k 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' >>> ...
10
votes
2answers
1k views

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 displaying the image like this: <img src="/media/image.png" ...
10
votes
4answers
10k 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.
10
votes
2answers
9k 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 ...
9
votes
6answers
1k views

Creating very large images using Python Image Library

I'm trying to create a very large image (25000x25000) by pasting together many smaller images. Upon calling Image.new() with such large dimensions, python runs out of memory and I get a MemoryError. ...
9
votes
3answers
2k views

Any way to make nice antialiased round corners for images in python?

Is there any way to make nice round corners with python? Currently PIL and GD2 are used in my project. Both of them have an arc() method, that allows you to draw a quater-circle, but the quater-circle ...
9
votes
5answers
6k views

NumPy, PIL adding an image

I'm trying to add two images together using NumPy and PIL. The way I would do this in MATLAB would be something like: >> M1 = imread('_1.jpg'); >> M2 = imread('_2.jpg'); >> resM = ...
8
votes
3answers
289 views

Marshaling a Python PIL Image using SWIG

I've got a library that takes in a very simple C image structure: // Represents a one-channel 8-bit image typedef struct simple_image_t { uint32 rows; uint32 cols; uint8 *imgdata; } ...
8
votes
4answers
308 views

Sorting a list of RGB triplets into a spectrum

I have a list of RGB triplets, and I'd like to plot them in such a way that they form something like a spectrum. I've converted them to HSV, which people seem to recommend. from PIL import Image, ...
8
votes
3answers
898 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, ...
8
votes
1answer
2k 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.
8
votes
5answers
5k 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 ...
8
votes
3answers
6k 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 ...
7
votes
3answers
881 views

Fastest 2D convolution or image filter in Python

Several users have asked about the speed or memory consumption of image convolutions in numpy or scipy [1, 2, 3, 4]. From the responses and my experience using Numpy, I believe this may be a major ...
7
votes
9answers
3k 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 ...
7
votes
1answer
354 views

Programmatically generate thumbnail CAP for small video

How can python make a simple cap for a video. Ideia: take 9 snapshots for 9 even placed (on the timeline) times, and displace then in a JGP How should I do this? Is PIL the only way? (it's not ...
7
votes
3answers
944 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 ...
7
votes
3answers
252 views

Dealing with huge (potentially over 30000x30000) images in Python?

I'm trying to use a python script called deepzoom.py to convert large overhead renders (often over 1GP) to the Deep Zoom image format (ie, google maps-esque tile format), but unfortunately it's ...
7
votes
2answers
3k 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 ...
7
votes
2answers
464 views

Extending a PIL decoder

I have a file which contains a single image of a specific format at a specific offset. I can already get a file-like for the embedded image which supports read(), seek(), and tell(). I want to take ...
7
votes
2answers
3k views

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 the color relationships. The lookup table is simply a 256-element list of RGB tuples: ...
7
votes
3answers
6k 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 ...
7
votes
3answers
2k 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
4answers
3k views

How to adjust the quality of a resized image in Python Imaging Library?

thanks for taking time to read my question. I am working on PIL and need to know if the image quality can be adjusted while resizing or thumbnailing an image. From what I have known is the default ...
7
votes
3answers
2k views

PIL: Image resizing : Algorithm similar to firefox's

I'm getting about the same bad looking resizing from all the 4 algorithms of PIL >>> data = utils.fetch("http://wavestock.com/images/beta-icon.gif") >>> image = ...
7
votes
3answers
2k views

What is the fastest way to draw an image from discrete pixel values in Python?

I wish to draw an image based on computed pixel values, as a means to visualize some data. Essentially, I wish to take a 2-dimensional matrix of color triplets and render it. Do note that this is ...
6
votes
3answers
940 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 ...
6
votes
5answers
3k views

Django/PIL Error - Caught an exception while rendering: The _imagingft C module is not installed

I'm trying to run a webapp/site on my machine, it's running on OSX 10.6.2 and I'm having some problems: Caught an exeption while rending: The _imagingft C module is not installed Doing import ...
6
votes
2answers
971 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 ...
6
votes
9answers
6k views

Image resizing with django?

I'm new to Django (and Python) and I have been trying to work out a few things myself, before jumping into using other people's apps. I'm having trouble understanding where things 'fit' in the Django ...
6
votes
3answers
4k 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 ...
6
votes
4answers
2k 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 ...
6
votes
3answers
2k views

How do you draw transparent polygons with Python?

I'm using PIL (Python Imaging Library). I'd like to draw transparent polygons. It seems that specifying a fill color that includes alpha level does not work. Are their workarounds? If it can't be ...
5
votes
2answers
47 views

Quickest way to preview a PIL image

I'm now working with PIL images in Python. What's the quickest way to preview a PIL image in the Python shell? Saving to a file and then opening it in my OS is pretty cumbersome.
5
votes
1answer
349 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 ...
5
votes
2answers
154 views

How do I read image data from a URL in Python?

What I'm trying to do is fairly simple when we're dealing with a local file, but the problem comes when I try to do this with a remote URL. Basically, I'm trying to create a PIL image object from a ...
5
votes
2answers
234 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 ...
5
votes
2answers
312 views

How to I use PIL Image.point(table) method to apply a threshold to a 256 gray image?

I have 8-bit greyscale TIFF images that I want to convert to Monochrome using a 75% white (decimal 190) threshold. In the Image.convert(mode) method section, the PIL manual says: "When translating ...
5
votes
3answers
383 views

Merge 2 images using google app engine and python?

I want to merge 2 images and that too at specific location of 1st image. Example: 1st image: x.png (400 X 400px) 2nd image: y.png (at 100,100 co-ordinates) How can i do this using python in google ...
5
votes
2answers
727 views

How to install PIL in system library using homebrew?

In a new SnowLeopard install, I'd like to use homebrew to install PIL. However the recipe installs PIL under cellar instead of in /Library/Python/2.6/site-packages. Is there a way to change the ...

1 2 3 4 5 13