Python Imaging Library, also known as PIL, adds image processing capabilities to your Python interpreter.
1
vote
1answer
86 views
Data type error
When I run this code I get the output:
TypeError: an integer is required
I have no idea why this is happening because I set both of the data types to uint8 and uint64 respectively. Evidently I ...
0
votes
2answers
269 views
TypeError when JPEG export is attempted
I'm trying to export resized JPEGs of a given image using the following code (the downloading part is omitted, since that works fine):
basewidth = 400 # user-defined variable
wpercent = ...
0
votes
2answers
232 views
Can't get Google App Engine Images API get_serving_url function to work
I'm new to Google App Engine and Python. I've almost completed a project, but can't get the get_serving_url() function to work. I've stripped everything down to the most basic functionality, ...
1
vote
1answer
141 views
Can't get Python Imaging Library to find JPEG support
This is on Mountain Lion (OSX 10.8.3). So I downloaded, built, and installed the assorted required libraries. I modified setup.py to refer to the right places...
TCL_ROOT = libinclude("/usr")
...
2
votes
0answers
52 views
How can I read Exiftags from string using PIL library?
I am working on a project where I get the exiftags metadata (includes image system as well as custom data) as part of an API endpoint. I need to know how do I extract/parse the exiftags if the tags is ...
2
votes
0answers
63 views
Serving Dynamic Images In Python 3.3
I am trying to use python (version 3.3) with PIL to generate dynamic images for a web page. I have verified that the contents of my generated image are fine with Image.show() but I can not get the ...
0
votes
0answers
44 views
Detect and download only product images with Scrapy
I'm loving Python, but am rather new to image processing.
What would be a suitable library to detect a product image (those with predominantly white background / white in each corner pixel) and where ...
0
votes
0answers
87 views
Django error when using easy_thumbnails in shell and runserver
I am trying to use easy_thumbnails in a Django (1.5) project on my laptop (OSX Lion) using the local django development server (runserver) or a python shell. I have the PIL library installed with jpeg ...
0
votes
0answers
48 views
Understanding Pythonpath and Installing Modules and being able to use them
Blockquote
I am a beginner at all of this, and so I need basic instructions, and hopefully a bit of instruction on how this works. I am attempting to write code that just displays an image on ...
0
votes
1answer
77 views
Cannot get jpeg support with PIL on OSX
I'm trying to run Google App Engine with the PIL library & jpeg support in order to make use of the images module in GAE.
Here is what I have done so far:
I downloaded the tarball for PIL 1.1.7 ...
0
votes
2answers
76 views
difference in using the import and from * import statement
When I install PIL http://www.pythonware.com/products/pil/ on 32 bit python, I can use import Image and then use the Image library inside PIL. However, for the 64 bit python, I downloaded ...
0
votes
0answers
110 views
Convert white background to transparent with PIL
How i can convert white background to transparent background in python with PIL?
1
vote
2answers
50 views
PIL jpeg, how to preserve the pixel color
I have some experiments with JPEG, the doc said "100 completely disables the JPEG quantization stage."
However, I still got some pixel modification during saving. Here is my code:
import Image
red = ...
-1
votes
1answer
66 views
How i can cut image on border?
How I can cut image by border, using PIL?
From image like this
I want make this
Thanks.
0
votes
1answer
126 views
Read binary .pgm files with python and numpy
I need to read 64x64 pgm plain format image files and put the resulting values in a numpy matrix. I can do it only if I use Opencv and PIL functions to open the image, but the final numpy matrix ...
0
votes
1answer
74 views
Python, tkinter: Why is this jpeg not showing? [duplicate]
Trying to display a picture from the internet on my GUI window.
So far my code is:
picURL = "https://graph.facebook.com/" + ID + "/picture"
picBytes= urlopen(picURL).read()
picData = ...
1
vote
2answers
93 views
Using PIL to draw image on App Engine
I have read the topic "App Engine, PIL and overlaying text".
The code below will show a broken image, how should I correct that?
class TestImg(webapp2.RequestHandler):
def get(self):
...
0
votes
0answers
75 views
How do i should i get sorl thumbnail to work?
I have failed to get sorl thumbnail to work. I have looked around and most people fixed their problem with sorl thumbnail by reinstalling PIL. I tried that and it just did not work out.
in my ...
1
vote
0answers
199 views
PIL ImageGrab screenshot doesn't show all visible applications
import ImageGrab
ImageGrab.grab().save("my_screenshot.jpg", "JPEG")
I have an application. This application is primarily QT which, in certain states, has embedded html elements. When this ...
0
votes
0answers
21 views
Substitute a package's dependency
I have this package:
$ pip show xhtml2pdf
Name: xhtml2pdf
Version: 0.0.4
Location: /home/tizi/mprojects/assura-homeowners/.ve/lib/python2.7/site-packages
Requires: html5lib, ...
0
votes
0answers
184 views
How may i install the Python Imaging Library to django environment?
I am currently finding it hard to install PIL on precise pangolin.
I have followed this tutorial ...
0
votes
1answer
77 views
Python script runs fine for a while then returns MemoryError (python 3.3)
I have a small script which utilizes the Python Imaging Library module for Python3.3 (on Win7, 8 gb of RAM) to take a screenshot of a small (~40x50) pixel area of the screen once each second and ...
0
votes
1answer
118 views
Python PIL library not working image.thumbnail(size, Image.ANTIALIAS)
I'm trying to debug this script in python from PIL import Image, ImageChops, ImageOps
I've searched all over the problem seems to be "image.thumbnail(size, Image.ANTIALIAS)" here. Anyone have any ...
3
votes
1answer
118 views
What system fonts are available to PIL on Google App Engine?
What fonts are available to use with PIL on App Engine?
I know I can upload a font as part of the application but what I basically want is a system provided sans-serif that will work with unicode ...
3
votes
1answer
95 views
Recommendations for backend image processing in Python
On my site I'm using simple text overlay. Inputs come from textboxes and then javascript makes an AJAX call with the inputs that are then processed in the backend by PIL (Python Imaging Library).
...
0
votes
0answers
23 views
I have got a 2-D array storing pixel value , how can i show them as an image [duplicate]
I have got the pixel value of an image patch as the following shows, but how should I show them as an image patch by using python? Is there a method in the PIL library?
array([[162, 162, 161, 162, ...
3
votes
2answers
295 views
Removing background noisy lines from Captcha Image using PYTHON PIL
I have a processed captcha image(Enlarged) look like :
As you can see, the font-size of the "TEXT" is bit larger than the width of the Noisy Lines.
So I need an algorithm or code to remove the noisy ...
1
vote
1answer
79 views
Convert an image loaded using PIL to a Cimg image object
I am trying to convert a iamge loaded using PIL to a Cimg image object. I understand that Cimg is a c++ library and PIL is a python imaging library. Given an image url, my aim is to calculate the ...
1
vote
1answer
246 views
Python PIL struggles with uncompressed 16-bit TIFF images
My system is Mac OS X v10.8.2. I have several 2560x500 uncompressed 16-bit TIFF images (grayscale, unsigned 16-bit integers). I first attempt to load them using PIL (installed via Homebrew, version ...
1
vote
1answer
141 views
Convert image from RGB to HSV color space
I couldn't fund such function in Scipy and Matplotlib documentation, and Google doesn't show pointers, except ActiveState recipe which demonstrates rgb2hsv function, thou not usable on Numpy array as ...
1
vote
4answers
281 views
100x100 image with random pixel colour
I'm trying to make a 100x100 image with each pixel being a different random colour, like this example:
I've tried to use matplotlib but I'm not having much luck. Should I maybe be using PIL?
1
vote
0answers
740 views
“IOError: decoder zip not available” : Ubuntu Python PIL
I am trying to get the sample heatmap.py running from:
http://jjguy.com/heatmap/
#image.py
import heatmap
import random
if __name__ == "__main__":
pts = []
for x in range(400):
...
1
vote
0answers
72 views
What can be wrong in converting grayscale image from PIL to QPixmap?
My program opens famous Lena image, then converts it to PIL image and then converts it to QPixmap.
import sys
import cStringIO
from PyQt4 import QtGui, QtCore
from PIL import Image
class ...
-1
votes
1answer
166 views
Is it possible to implement a fire detection algorithm using python
I would like to implement a fire detection algorithm using Python.
I'm a Python fan - don't much know about C++.
I'm here about Simplecv - I think that it is easier than opencv
I have a good camera - ...
1
vote
0answers
68 views
PIL Image, cut from one image to another
I'm trying to cut a section from one image and paste it into another. I'm using the following code:
img1 = Image.open("Img1.png")
img2 = Image.open("Img2.png")
cut = img2.crop((31, 0, 47, 15))
...
0
votes
0answers
54 views
Is the PIL.being continued for Python 3.x? [duplicate]
I'm using the PIL for Python 2.7 currently, for a school project (an auto-firing IR-guided tracker sentry :P). I'm using the PIL to analyze images and point out the warmest spot (to a limit, of course ...
0
votes
1answer
133 views
how to store a image into redis using python / PIL
I'm using python and the Image module(PIL) to process images.
I want to store the raw bits stream of the image object to redis so that others can directly read the images from redis using nginx & ...
1
vote
0answers
106 views
Fade between images on screen using Python TKinter / imageTK
I am a python newbie and have been making a somewhat odd slideshow script that cycles through images and also sources a variable from another file to 'settle' on an image.
I'm sure my code is tragic. ...
0
votes
1answer
71 views
Python: PIL: colors data type, need help “deciphering” its meaning
I need help to understand the PIL and colors information a little bit better.
I'm working on a Python project where I'm supposed to analyze an already existing image (.png, RGB) to extract what ...
0
votes
1answer
349 views
pip, PIL and Pillow
I ran the following command to install project dependencies into virtualenv novacek:
(novacek) $ pip install -r reqs.txt
reqs.txt looks like this:
Django==1.4.4
Pillow==1.7.8
South==0.7.6
...
0
votes
1answer
142 views
Problems Installing Python Imaging Library (PIL)
I'm trying to install Python Imaging Library,
Running on Mac OS X 10.6.8
Python version 2.6
Everything went well until I ran
python setup.py build_ext -i
I get the following error on Terminal
...
2
votes
2answers
157 views
PIL and vectorbased graphics
I run into several problems when I try to open EPS- or SVG-Images with PIL.
Opening EPS
from PIL import Image
test = Image.open('test.eps')
ends in:
Traceback (most recent call last):
File ...
0
votes
2answers
116 views
Saving a PIL generated PNG Image on a server with PHP
I've got a python Image object from a screen capture that I want to save on a server running PHP.
I want to do all of this without at all saving the image on the user's computer, so I want to send the ...
0
votes
1answer
75 views
Crop an image in Python: Image.crop() vs. Image.transform()?
I want to crop an image by selecting a subregion of it to turn into a new image file.
Based on what I see in the PIL docs, I am trying to decide between 2 approaches.
For both approaches:
# ...
1
vote
1answer
126 views
loop binary image pixel
i have this image with two people in it. it is binary image only contains black and white pixels.
first i want to loop over all the pixels and find white pixels in the image.
than what i want to ...
0
votes
1answer
153 views
pil draw text with different colors
Hi to draw three different text with different options for ex:
text-number-1 , font=arial, color=red
text-number-2 , font=veranda, color=blue, size=30
text-number-3 , font=tahoma, color=green, ...
0
votes
1answer
71 views
transparent effect python image library
I have been searching relevant strings for days, but couldn't find a good answer for me.
my problem is how I can draw a transparent red rectangle on top of a blue rectangle.
Here is how i am doing ...
3
votes
1answer
69 views
Incorrect red pixel values of saved picture Python
I have a multidimensional array of the red pixels in the picture. And I'm adjusting it to make a new picture using the new red pixels that I have changed. I'm still keeping the blue and green and I'm ...
3
votes
1answer
314 views
image processing using python and scipy
Hi I am trying to do image processing with python.
what i actually want to do is i have image with human and i need to indetify human faces or detect circle (basically human face).
what i have done ...
0
votes
0answers
96 views
How to properly write utf8 IPTC metadata with python library IPTCInfo?
After generating a JPEG thumbnail file with PIL, I would like to use IPTCInfo in order to write IPTC metadata containing french characters with accents. I was thinking about using UTF8 character ...



