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

learn more… | top users | synonyms (2)

1
vote
1answer
101 views

Checking if an image format is Lossless in Python?

I am working on an application that requires images submitted to it to be lossless. Currently I am opening the image with PIL and checking if the "format" attribute is a lossless format. This requires ...
0
votes
1answer
231 views

X11 Tkinter + PIL + py2app = IOError cannot identify image file

I have a problem with a python program (python 2.7.3, X11 Tkinter, py2app 0.6.4, MacOS X 10.7.4) that I'm trying to export to py2app. The problem only started occurring in the standalone py2app-ified ...
1
vote
1answer
222 views

python Image PIL to binary Hex

from PIL import Image from PIL import ImageDraw from PIL import ImageFont import urllib.request import io import binascii data = urllib.request.urlopen('http://pastebin.ca/raw/2311595').read() r_data ...
0
votes
1answer
20 views

python vipscc in celery Missing argument

Im trying to write a celery task for processing large tif files. From past experience Ive found vipscc uses less memory than pil to process/resize tif's so id like to use that module. The problem is ...
0
votes
2answers
81 views

decoder zip not available (Windows 7)

I installed django-photologue. But then when I try to save a photo in django admin it throws this error: 'decoder zip not available' I have already un-installed and re-installed PIL. I hope ...
1
vote
2answers
69 views

PIL python,License and Distribution

Good morning, I have created a little software for photo retouch by PIL python. By py2exe i have created an exe version from my .py file. In my dist and build folder I can find PIL module pyc and ...
3
votes
2answers
133 views

Using Python, is there a way to automatically detect a box of pixels in an image?

I dont currently have access to openCV on the box I am working on - which would make this a walk in the park and save me from pulling my hair - but below is an image I have that i've gotten the ...
0
votes
1answer
55 views

Making an image bigger after creating it

here is my code import Image import ImageDraw img = Image.new("RGB", (400,400), "white") draw = ImageDraw.Draw(img) coords = [(100,70), (220, 310), (200,200)] dotSize = 2 for (x,y) in coords: ...
1
vote
1answer
142 views

PIL mirror image coodinates

I have a image that i created using PIL import Image import ImageDraw img = Image.new("RGB", (400,400), "white") draw = ImageDraw.Draw(img) coords = [(100,70), (220, 310), (200,200)] dotSize = 2 ...
1
vote
1answer
72 views

PIL drawing an image then displaying it in wxpython

I have an image drawn using PIL in python. import Image import ImageDraw createCM(): img = Image.new("RGB", (400,400), "white") draw = ImageDraw.Draw(img) coords = [(100,70), (220, 310), ...
1
vote
1answer
58 views

PIL selection of coordinates to make an image

I am wanting to create an image from a selection of coordinates i have. So I want each coordinate to be set a particular size and colour say black and 2X2, and then place it at the particular pixel it ...
2
votes
1answer
241 views

Opencv integration with wxpython

I just wanted to integrate the opencv video stream from my web cam into a more complex gui than highgui can offer, nothing fancy just a couple of buttons and something else, however it's proven to be ...
0
votes
1answer
67 views

What is the difference between a PIL Image from PIL.Image.open and a NumPy Image matplotlib.image.imread ?

I would like to know why I should or shouldn't use a matplotlib image over a PIL image. I know that matplotlib uses PIL to load any image that is not a PNG, but what is the advantage in having it in a ...
1
vote
1answer
437 views

Python PIL bytes to Image

import PIL from PIL import Image from PIL import ImageDraw from PIL import ImageFont import urllib.request with urllib.request.urlopen('http://pastebin.ca/raw/2311595') as in_file: hex_data = ...
1
vote
0answers
203 views

PIL selftest.py fails for Centos 6 64-bit Error: Jpeg Decoder not Available

I am having difficulty on my server trying to get the selftest.py to run successfully. I am trying to get PIL 1.1.7 working with Python 2.4.4 (Are the versions compatible?) When the install is ...
2
votes
1answer
72 views

using PIL in asynchronous code (Twisted Web)

I have a web API which receives an image, and passes it to another asynchronous service. However before passing if further I scale it down using PIL. My code looks something like that (simplifying, ...
0
votes
1answer
104 views

Python : any ideas without using PIL to draw the text on a image

i m using Python 3.3,and i have installed(just excute the downloaded file .exe,no need any setting?) aspell PIL from below link,unfortunately i import PIL are error unresolved PIL. why? ...
1
vote
1answer
127 views

Resize an image, from dajgno model form before uploading it to amazon s3 bucket

I am trying to resize an image, before uploading it to S3 bucket, using PIL. The model form is working perfectly well, except that the image resize does not happen. Following is my models: class ...
0
votes
1answer
229 views

PIL to Qimage conversion: QImage constructor does not free memory

I am developping a Qt application loading pictures with PIL, modifying colors and alpha channels, then converting them as QImage. Here is the problematic piece of code: normal repeated usage of the ...
0
votes
0answers
141 views

Detecting shape using numpy for image of people

hi i am trying to do face detection without using opencv. I am filtering the image to find edges of the image. I am widening the edges of the image for clear. I want to recognise the shape in the ...
1
vote
1answer
127 views

PIL Module with PyDev

I am new to Python and also Google App Engine, but I am stuck up with the installations of it and its compatibility. I am using mac os -x and eclipse helios and got the pyDev plugin installed but in ...
2
votes
1answer
99 views

How to install Python Image Library on Windows XP?

This is the link I have downloaded: Python Imaging Library 1.1.7 Source Kit (all platforms) (November 15,2009) http://effbot.org/downloads/Imaging-1.1.7.tar.gz How to execute the setup.py? ...
0
votes
1answer
51 views

Adding a layer to an image: Easy-Thumbnails

In Django, I am using Easy-Thumbnails. Before saving an image file in my model field, I want to just do some process to the image, like adding a layer or an other image on or behind it. What do I do ...
2
votes
1answer
289 views

Django - Getting PIL Image save method to work with Amazon s3boto Storage

In order to resize images upon upload (using PIL), I'm overriding the save method for my Article model like so: def save(self): super(Article, self).save() if self.image: size = (160, ...
1
vote
1answer
171 views

how to install libjpeg for pil on windows

I'm converting images formats on windows using python 2.7 and PIL. Trying to convert an image to JPG raises this exception: KeyError('JPG',) Traceback: ...\PIL\Image.py", line 1429, in save ...
0
votes
0answers
191 views

Saved jpeg file from mjpeg stream not recognized by PIL in python

I am trying to snatch a valid JPEG frame from a webcam's MJPEG stream. I successfully write it to disk and I can open it in a program like Infranview, but Python and other graphic programs don't see ...
0
votes
1answer
208 views

Installing PIL on OSX Mountain Lion for google app engine,

I know there are many questions on SO, and forum and blog posts around the web, but I keep running into the same problems. I'm trying to install PIL to use it for the app engine imaging api. In the ...
4
votes
2answers
251 views

Resizing png image with PIL loses transparency

I use this method to resize png images: Method for converting PNGs to premultiplied alpha But this image still loses transparency: import Image, numpy def resize(filename, img,height, width): ...
0
votes
0answers
114 views

PyPy slow when drawing polygons with PIL/pillow

I'm using PIL to draw lots of polygons consisting of big number of points (from couple hundred to couple thousands). With Cpython all polygons were processed 3 times faster than PyPy. Just to give an ...
0
votes
0answers
89 views

Python Thumbnail generation for very large images?

Im trying to generate thumbnails of large image files around (50MB to 200MB) Originally I have been using pil's thumbnail function for this ie. Image.thumbnail((550,550), Image.ANTIALIAS) but Ive ...
0
votes
0answers
67 views

Blending Images while maintaining opacity

I have been trying to blend together images (using PIL in python) to form one combined image. However, for both of the images to blend in properly, I've been keeping the alpha as 0.5. This leads to ...
2
votes
3answers
527 views

Grayscale image to NumPy array for Fourier transform

Currently I'm using PIL and NumPy. I have a colored png image and I want to: Read it in in grayscale Convert to NumPy array Perform a FFT on array Display the image This is what I'm trying (in ...
3
votes
2answers
134 views

Loss of data when extracting frames from GIF to PNG?

When I try to use fraxel's answer on http://stackoverflow.com/questions/10269099/pil-convert-gif-frames-to-jpg on the image ...
1
vote
2answers
344 views

Trying to run simple PIL python example, can't convert jpeg to float

so I wrote a simple python script from PIL import Image from pylab import * im = array(Image.open('sample.jpg')) imshow(im) and i get this error from IDLE Traceback (most recent call last): File ...
1
vote
1answer
41 views

Python Image.crop saves black images

I am trying to make tiles for a game using a larger background image and cropping them, but after saving the first 17 images I start running into problems. The 18th image is blackened out at the ...
0
votes
2answers
77 views

Cherrypy only has port issue when handling file upload?

I'm trying to get a site working again which lost a developer and a lot of undocumented information -- desperate for help. The site was working with the below configuration, and my feeling is that I'm ...
-1
votes
2answers
160 views

Downloading an image with python [closed]

So, I have been searching a lot in different places to see if I can download a png imge. The location of the png image url is: http://www.hackthissite.org/missions/prog/2/PNG/ This is what I am ...
0
votes
2answers
66 views

How does the raw decoder from PIL work?

I'm trying to convert .tiff's to an array, so that I can add images together pixel to pixel and do several other operations on them. I'm using numpy.fromstring() and im.tostring to convert. def ...
4
votes
3answers
888 views

saving image in python PIL

i have just done some image processing using the python image library (PIL) using a post i found earlier to perform fourier transforms of images and i cant get the save function to work. the whole ...
1
vote
1answer
165 views

PIL's image.paste operation degrades image / drawn text quality

I am developing on a Windows 7 platform with Python 2.7.3 and PIL 1.1.7. I am trying to write a python script to generate a set of images with text on them. Since I need to wrap text and fit it in ...
0
votes
0answers
220 views

Calling a Python function within a Backbone.js view?

I'm working on a project that's in the process of migrating from Django 1.3 to Node/Backbone.js Consequently, I'm working with two sets of views. I have a function for validating and processing ...
0
votes
1answer
79 views

Python Imaging Library loop performance getting slower with repetition

I have written a simple function to resize an image from 1500x2000px to 900x1200px. def resizeImage(file_list): if file_list: if not os.path.exists('resized'): ...
-5
votes
2answers
117 views

Pyhon image comparison regardless of size [closed]

I have two images, i want a response (true or false) to know if they are different. The images are not of the same size.
0
votes
1answer
193 views

What is difference between PIL and ImageMagick bindings for python? [closed]

I research different ways for scale images (creating thumbnails) using python. Can anybody explain me fundamental difference in result images after ImageMagick process and after PIL process. At first ...
1
vote
1answer
148 views

is there antialiasing method for python PIL

For line and ellipse in PIL, images are rough. I found antialiasing only in resize and thumbnail. Is there any way to do antialiasing when drawing a line or ellipse?
6
votes
3answers
217 views

Django: How do I display a PIL Image object in a template?

Django If a user uploads an image, and I resize it using PIL, I get a PIL Image object. How do I display a PIL Image file in a template, before it has been saved to the database? Can it even be ...
1
vote
2answers
100 views

PIL: How to reopen an image after verifying?

I need open an image, verify the image, then reopen it (see last sentence of below quote from PIL docs) im.verify() Attempts to determine if the file is broken, without actually decoding ...
0
votes
0answers
113 views

threading and tkinter

I'm making an image manipulation class to be used in an intro CS course, using PIL for image manipulation and Tkinter to show the picture. In order for the users to be able to see the picture while ...
1
vote
1answer
153 views

Python: process image and save to file stream

I need to process an image (apply filters and other transformation) using python and then serve it to the user using HTTP. Right now, I'm using BaseHTTPServer and PIL. Problem is, PIL can't write ...
0
votes
2answers
208 views

performance concern, Python vs C

I was using PIL to do image processing, and I tried to convert a color image into a grayscale one, so I wrote a Python function to do that, meanwhile I know PIL already provides a convert function to ...

1 2 3 4 5 26