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

learn more… | top users | synonyms (2)

0
votes
1answer
39 views

Python imaging library in working

I've installed PIL. But my django app failed to use it. django log: IOError at /catalogue/books/fiction/ decoder jpeg not available Then i've checked the pip log about PIL installation. It reads ...
1
vote
2answers
39 views

Adding a transparent circle to an image on python with PIL

I have a python program that craetes a png file with a circle on it. Now I want this circle to be semi transparent, given an alpha value. Here is what I do: img_map = Image.new(some arguments here) ...
0
votes
0answers
39 views

Getting html5 canvas to GET PIL image from Django

I am using django-form to get user-uploaded image and then send it to html page. The ultimate view is to process image with PIL and display result on canvas. However, at the moment, I am unable to ...
0
votes
1answer
57 views

Python performance, or bad usage of PIL?

I am implementing basic global thresholding with Python. A part of the algorithm involves grouping pixels into two containers according to their intensities; group_1 = [] group_2 = [] for intensity ...
0
votes
0answers
28 views

Python Image Library - OverflowError: requested number of bytes is more than a Python string can hold

I am new to PIL. When I ran the following code : im = Image.frombuffer('RGBA', (pixels_per_line, lines), buffer.read(), 'raw', 'RGBA', 0, 1) I got this error : ...
2
votes
2answers
101 views

Detecting a Specific Watermark in a Photo with Python (without SciPy)

I have a large number of images (hundreds of thousands) and, for each one, I need to say whether or not it has a watermark in the top right corner. The watermark is always the same and is in the same ...
0
votes
0answers
39 views

Windows service grabbing the screen in Python

I have a Python script running as a Windows service that takes screenshots regularly. I had this working as a simple Python script, but now that I've turned it into a service it no longer functions. I ...
0
votes
1answer
102 views

Efficient way to find median value of a number of RGB images

I'm playing around with a script in Python where I want to find the median of a number of images of same dimensions. That is, I wan't to take all (red, green and blue) pixels in position [x,y], and ...
2
votes
1answer
48 views

How can I have motion on a tile map?

I'm interested in doing something like this: http://hint.fm/wind/gallery/oct-30.js.html It seems like a tile map, are the tiles animated gifs? If not how can this animation be achieved? I was ...
3
votes
2answers
125 views

Counting particles using image processing in python

Is there any good algorithm for detecting particles on a changing background intensity? For example, if I have the following image: Is there a way to count the small white particles, even with the ...
0
votes
0answers
14 views

How to get images data in the image object in Python? [duplicate]

How to get images data in the image object in Python? I am trying to get image title, tag, comments and rating in the image object. but i can not find it.
0
votes
1answer
34 views

Error using Elaphe with GhostScript on Mac

I'm trying to setup elaphe on Mac. When I try generate some barcode using the terminal, with command python + /.../file.py elaphe works OK and generates the barcode correctly. But when I try to ...
0
votes
1answer
51 views

PIL ImageDraw.textsize returns incorrect height

I'm having an issue with PIL's ImageDraw module, specifically the Draw.textsize method. This method is supposed to take a string and a font, and return the width and height that the string would ...
0
votes
1answer
39 views

Fish swim in pygame

I want to use the python pygame module to make a 2D "fishtank". Basically I will load a jpg image as background and load a gif animated image depicting fish swimming and make it move. I know how to ...
2
votes
2answers
45 views

Get time that program ran (Python)

Im writing a Python script and im going to make it say last updated: and then the time it lst updated but im not sure how here is and example code from PIL import ImageDraw import ctypes, time ...
1
vote
2answers
56 views

Change saturation with PIL or Pillow?

How do I go about changing the saturation of an image using PIL or Pillow? Preferably I'd like to be able to use the solution together with the django-imagekit package. The reason I need to change the ...
0
votes
0answers
197 views

ImportError: The _imaging C module is not installed? PIL Python3

root@syscomp1:~# cd Pillow-master root@syscomp1:~/Pillow-master# python3 selftest.py Traceback (most recent call last): File "selftest.py", line 8, in <module> from PIL import Image File ...
1
vote
2answers
72 views

View a sequence of images using Python and NumPy

I am using python's pil library to display images. Now I have a sequence of frames to display as a video content. I have a np.array that contains the RGB values of all the frames. Could not find a ...
0
votes
1answer
75 views

Python Script Image Save Directory/Filename Error

Im trying to make this image save but Im getting an error message its saying there is no such file or directory even tough i have the picture saved import PIL from PIL import ImageFont from PIL ...
0
votes
1answer
61 views

Systematically moving through every number in a numpy array

I have a 500x500 array and I am trying to write a variable called "coordinate" that will pick out each value and then apply it to a function but I keep getting the output, AttributeError ...
0
votes
0answers
34 views

Special Characters in PILLOW 2.0.0 with Python 3.2

So after a lot of searching a fooling around, I'm stumped here. I'm using PILLOW 2.0.0 on Python 3.2 to generate text. This is working, however I'm running into some issues with the character ...
0
votes
0answers
36 views

Heroku push error (possible cause pip install PIL)

Recently, I added following lines to requirements file: boto==2.8.0 django-storages==1.1.8 easy-thumbnails==1.2 pil==1.1.7 Now, when I push the project it gives me an error: -----> Installing ...
0
votes
1answer
49 views

Remove PIL from raspberry Pi

Hi i am getting an error "IOError: decoder jpeg not available" when trying to implement some functions from the PIL. What i would like to do is remove PIL, install the jpeg decoder then re-install ...
1
vote
0answers
55 views

How can i use the Module “Image” on Godaddy's Python to resize a jpg?

im using the python on godaddy, but it seems that i dont have a Image module: here is the code of my test.py page on my deluxe godaddy linux hosting account #!/usr/bin/env python2.7 # -*- coding: ...
0
votes
2answers
82 views

Convert image color space to RGB in Python

I'm working on the image processing script(Python with PIL library) and i need to convert color space of any image to RGB. I've tried this trick, but it works only with png images in RGBa color space: ...
0
votes
0answers
36 views

Python 2.2 - PIL module error

Good evening, i have strange problem. I use specyfic python version 2.2 in some game, and i wanted to add PIL module there. I installed python 2.2 on my pc, installed pil and just copied files from ...
0
votes
2answers
79 views

how does ImageFilter in PIL normalize the pixel values between 0 and 255 after filtering with Kernel or mask

how does ImageFilter in PIL normalize the pixel values(not the kernel) between 0 and 255 after filtering with Kernel or mask?(Specially zero-summing kernel like:( -1,-1,-1,0,0,0,1,1,1 )) my code was ...
1
vote
0answers
83 views

Python, PIL; Text to Image and insertion into MS Excel

I'm using Python and PIL to create "Text to Image" figures and place these into MS Excel documents. I'm having issues with image quality - So far I'm able to create images from given text, though ...
0
votes
1answer
38 views

Interpolation and image drawing

In my little project I have a function that returns a list of points coordinates. Like this: points = [(x1, y1), (x2, y2),...] When I draw it on image, I get points on image but I want ...
2
votes
1answer
149 views

Python, PIL; Text to Image and fonts

I have an issue with writing text to an image under Python and PIL - I'm able to write text to a png file, though not bold text. Could anyone provide an example of how to achieve this? I thought the ...
0
votes
2answers
49 views

img.save(imgstore, “GIF”) or img.save(imgstore, “JPEG”)

if request.method == 'POST': form = DocumentForm(request.POST, request.FILES) if form.is_valid(): u_file = request.FILES['docfile'] ...
1
vote
0answers
95 views

“command 'gcc' failed with exit status 1” building PIL 1.1.7

I'm trying to build python-imaging and I get this error: gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -DHAVE_LIBJPEG -DHAVE_LIBZ ...
0
votes
1answer
35 views

ImageFont from font data or URL

I would like to know how to use an ImageFont instance from an URL or font data in Python. The font file is stored on an Amazon S3 instance as static data and I need to use it to generate an image with ...
0
votes
2answers
101 views

gcc-4.0 error when building _imaging extension for PIL

When I install PIL (or pillow), the _imaging C module does not install. This is a common error, and have seen ApPeL's play-by-play solution that most have found helpful. Unfortunately, when I run ...
0
votes
0answers
77 views

PIL says decoder jpeg/zip not available but selftest says it is; Pillow cannot identify image file

So a couple of weeks ago, I had PIL working fine with a Django installation on a Red Hat system on Bluehost. I'd edited setup.py to add the right directories for libjpeg etc., and the installation was ...
0
votes
1answer
92 views

How to make texts in images sharper using PIL?

I was working with PIL, OpenCV and OCR readers to read texts from Images. The biggest problem I faced is when it comes to Image processing to make texts sharp enough for easier/accurate extraction by ...
2
votes
1answer
82 views

I can't display text over my tkinter image

I am trying to display text on top of my image but I cannot do do this, can anyone help please. Code: import Image and the graphics package Tkinter import Tkinter import Image, ImageTk class ...
1
vote
2answers
131 views

How to bind spacebar key to a certain method in tkinter (python)

I am working on a project in python, and I made a method to draw a specific thing in tkinter. I want it so that whenever I press the spacebar, the image will redraw itself (run the method again ...
1
vote
1answer
126 views

Python Tkinter rotate image animation

I have a PhotoImage that I created using PIL and then added to a TKinter canvas. The image shows up fine. However, I can't get the PIL rotate function to work correctly. Here is my code: #This ...
0
votes
1answer
69 views

Saving in PNG (using PIL library) after taking ImageChops.difference of two PNG files is producing transparent (or white) PNG image file

Here in this code I am taking difference of two same resolution PNG images ,then saving the difference,. Saving in JPEG works fine but in PNG, it produces a total tranparent PNG image file. look at ...
1
vote
1answer
44 views

PIL.Image.save() to an FTP server

Right now, I have the following code: pilimg = PILImage.open(img_file_tmp) # img_file_tmp just contains the image to read pilimg.thumbnail((200,200), PILImage.ANTIALIAS) pilimg.save(fn, 'PNG') # fn ...
2
votes
2answers
134 views

Why saving as pdf with PIL creates a grey zone around fonts

I want to convert a pdf file to png to manipulate within Python, and the save it back as a pdf, but in the process a grey zone gets created around the fonts (my image is a simple black and white typed ...
0
votes
0answers
81 views

Python Image Library halftoning

I am currently doing halftoning in python (with PIL). I have converted pixels into shapes, but I have some problems because the image gets a few times bigger than the original. I need to select a few ...
0
votes
1answer
29 views

PyDev reports import error for installed modules in site-packages but does run the code

I've just started using PyDev for Python 2.7 on MacOS 10.8.3. The only problem I have is that for the line... from PIL import Image It reports "Unresolved import: Image". However, I can run the ...
0
votes
1answer
205 views

PIL IOError: decoder zip not available after built with ZLIB support

I've pointed setup.py towards /lib where my libz.so is. When I then run setup.py install, I get the ZLIB support confirmed: -------------------------------------------------------------------- PIL ...
0
votes
0answers
76 views

IHow do I convert opencv to PIL with and RGBA format in python?

I am wanting to convert an webcam shot in opencv to PIL so I can read the image pixel for pixel and get the RGB formats. I ussually get the RGBA format when working with PIL but now I get an ...
5
votes
1answer
420 views

Besides standard/progressive, the 3rd kind of JPEG compression: load by channel?

this question might be an "Open Question" and many of you might be eager to close it, but please don't. Let me explain. As we all know, JPEG has two kinds of compression (at least in Photoshop save ...
0
votes
0answers
64 views

Django cant store file

I have a issue trying to upload a image with django. After save a model, image shows like saved, but not stored in media folder. Here's my code: class Post_Imagens(models.Model): """ Imagens ...
0
votes
1answer
83 views

Analysis of images using PIL in Python

I found this code: import PIL from PIL import Image from matplotlib import pyplot as plt im = Image.open('./color_gradient.png') w, h = im.size colors = im.getcolors(w*h) def hexencode(rgb): ...
0
votes
1answer
54 views

Image display issue

When I load a transparent image with: def load_image(path): img = Image.open(path) return ImageTk.PhotoImage(img) class Home_Screen(threading.Thread): def __init__(self): ...

1 2 3 4 5 26