Top "Python-imaging-library" questions

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

Python Pil Change GreyScale Tif To RGB

I have a greyscale TIF File. I need to convert it to RGB/ read from it in a way I …

python python-imaging-library rgb grayscale
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/…

python gcc python-imaging-library virtualenv
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 …

python image python-imaging-library hue
RGB to HSV via PIL and colorsys

I have written a function which converts an Image from RGB > HSV. However, when I save the new image …

python python-imaging-library rgb hsv
AttributeError: module 'scipy.misc' has no attribute 'toimage'

While executing the below code: scipy.misc.toimage(output * 255, high=255, low=0, cmin=0, cmax=255).save( params.result_dir + 'final/%5d_00_%d_…

python scipy python-imaging-library rawimage
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 …

python image colors python-imaging-library palette
Python PIL For Loop to work with Multi-image TIFF

Each tiff file has 4 images in it. I do not wish to extract and save them if possible, I would …

python python-imaging-library tiff
How to modify EXIF data in python

I am trying to edit/modify existing metadata within python 2.7. More specifically I have GPS coordinates in a my metedata, …

python metadata python-imaging-library exif
Interpreting GPS info of exif data from photo in python

I am writing a small program to get the GPS info of a iphone jpg photo. The library I am …

python gps python-imaging-library exif
PIL: Create one-dimensional histogram of image color lightness?

I've been working on a script, and I need it to basically: Make the image greyscale (or bitonal, I will …

python image-processing python-imaging-library scanning