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

learn more… | top users | synonyms (2)

0
votes
1answer
16 views

downsampling images as a function in Python

I am trying to resample some tiff files from 2000*2000 to 500*500. I have created a function and I tried for one file and it worked nicely. Now I want to apply it for all the available file I have. I ...
0
votes
0answers
27 views

Django File Handling

I am creating an thumbnail of a photo using PIL and storing it in S3 by this method- image = Image.open(image) image.thumbnail(thumbnail_size, Image.Antialias thumbfile = StringIO() ...
0
votes
2answers
12 views

PIL and Python27 - Save a screengrab?

Here is the code from PIL import ImageGrab scrgrb = ImageGrab.grabclipboard() scrgrbnum = 0 def saveimg(): scrgrb.save("screengrab.jpeg + str(scrgrbnum + 1)", "JPEG") scrgrbnum = scrgrbnum + ...
0
votes
3answers
48 views

Convert List of strings to ints without removing 0

So I have a list of strings that I want to convert into a list of ints ['030', '031', '031', '031', '030', '031', '031', '032', '031', '032'] How should I go about this so that the new list does not ...
0
votes
1answer
20 views

Image not uploaded - Django Server

I'm trying to send an image android(client) to django(server) by converting it into base64 string. I've received the string @ the server side, decoded and renamed it.However, when I try to save the ...
1
vote
1answer
37 views

get the position / coordinates and size of text displayed on the screen in TKINTER

We are about to conduct an eye tracking study where we will try to evaluate gaze on specific words displayed on the screen. I have many .txt files that need to be converted to images and displayed on ...
0
votes
1answer
23 views

Crop an image in the centre using PIL

How can I crop an image in the center? Because I know that the box is a 4-tuple defining the left, upper, right, and lower pixel coordinate but I don't know how to get these coordinates so it crops in ...
1
vote
0answers
25 views

Python PIL (Pillow) sometime generate garbage on transparent images

When i'm create a image without color sometimes i get garbage (random color, point or lines) image = Image.new("RGBA", (256, 256), None) # draw a rectangle with rounded corners image = ...
1
vote
1answer
16 views

Python3 PIL (Pillow) draw.pieslice bad arc

I'm dawing a simple pieslice with PIL image = Image.new("RGBA", (256, 128), "#DDD") draw = ImageDraw.Draw(image, image.mode) draw.pieslice((0, 0 , 64, 64), 180, 270, fill="white) del draw ...
2
votes
1answer
22 views

scipy.misc.imread creates an image with no size or shape

I'm trying to get scipy.misc.imread to just read in an image and tell me it size, which I've been able to do fine on other computers but it's failing for me on a new Mac: Python 2.7.4 (default, May ...
1
vote
1answer
74 views

How can I train a python function to return the result I want?

The problem I'm looking at is that I want to detect with a fairly reasonable level of certainty whether an image is black or mostly black. I already have the code written to get the color histogram, ...
0
votes
3answers
25 views

Error Installing PIL using pip

I am Trying to install PIL using pip using the command: pip install PIL but i am getting the following error and i have no idea what it means. Could someone please help me out. ...
0
votes
1answer
13 views

Error installing Mezzanine cms on Windows 7

I am trying to install mezzanine on windows 7 64 bit. I have installed pil for python 2.7 64 bit from here. I recreated my virtualenv, but i still get this error i know that error is caused by pil ...
0
votes
1answer
30 views

How to install PIL with pip+mingw in windows?

I am trying to install PIL using pip and mingw. However it fails as follows. Downloading/unpacking PIL Running setup.py egg_info for package PIL WARNING: '' not a valid package name; please use ...
0
votes
0answers
12 views

wand python multi-size icon

i'm trying to use Wand to create a multi-size ico, but i don't find anything talking about that, only normal conversion, to ico... i've found "Sequences": ...
-1
votes
1answer
28 views

Classify collection of images [closed]

I have folder with collection of images from microscope and I have to separate them into two classes (samples with defects and without defects). Additionally I've got sets of already classified ...
0
votes
0answers
25 views

Python - How to save a list as an image?

I generate a regular list. Is it possible to save this list as a JPEG image or PNG or whatever so that I can open the image and look at it? I am currently trying to figure it out using the python ...
0
votes
0answers
46 views

Apache/mod_wsgi _imagingft C module

i've successfully installed PIL (with freetype and jpeg support) for Python 2.7. My script uses Image and ImageFont. It works when executed with command line. But if i launch it with my server (MAMP ...
0
votes
0answers
33 views

Image.show() results in a black screen

Ok, so I'm trying to display a file I have in the same directory as my python script (called C.png). The first line just gives me a black bitmap image, while the second line gives me a colored image ...
3
votes
0answers
36 views

Python barcode library Error

I have installed pybarcode0.6 lib in Windows 7. After installing it, I had written the following code to generate the barcode for my module: import barcode from barcode.writer import ImageWriter ...
-2
votes
1answer
29 views

How to make a script for automatically separating a handwritten note into two parts (divided by a colored line) [closed]

I'd like to scan a white size a4/a5 handwritten note with black handwriting that is separated into two parts with a straight colored line made with some marker pen. Using the picture file I get I then ...
0
votes
1answer
29 views

no module named Pillow._imaging

when i try to import Pillow.selftest no problem. but, as you can see, import Pillow._imaging raises a importerror. i have been trying to rename the c-module, move it to the Lib folder, ...
1
vote
0answers
57 views

Using PIL to insert greyscale image into RGB image by inserting greyscale values in RGB tuple

I am writing several functions, the first one inserts a greyscale bitmap image into another colour bitmap image. Now my aim is basically to take each digit of the greyscale pixel image (eg. 123) and ...
0
votes
1answer
25 views

How to resize only image width using scrapy?

Using scrapy I can resize an image and keep its aspect ratio. http://doc.scrapy.org/en/latest/topics/images.html#std:setting-IMAGES_THUMBS IMAGES_THUMBS = { 'small': (50, 50), 'big': (270, ...
0
votes
1answer
39 views

Python Image Search using JPEG and IF Statement

I'm trying to make an if statement in Python that goes like this "If image exists on my screen, do this". For example, if I have a jpeg of a red circle saved, I want to be able to look for that red ...
0
votes
0answers
45 views

Need a pure python library for reading a group3 TIFF (fax image)

I am trying to decode a group3 TIFF. This TIFF data is 1bit group3 compressed. It's what is generated by a FAX machine aka CCIT T.4 - http://www.fileformat.info/mirror/egff/ch09_05.htm I can not ...
-4
votes
1answer
80 views

Craps game simulation python? create a program in python based on the information below Craps game above and include the given requirements 1,2,3,4

Each round has two phases: "come-out" and "point". To start a round, the shooter makes one or more "come-out" rolls. A come-out roll of 2, 3 or 12 loses and is called "craps". Anyone betting on the ...
2
votes
1answer
56 views

Tkinter does not show a picture on canvas when the canvas is put inside a frame

This piece of code works fine: import Tkinter from PIL import ImageTk, Image root = Tkinter.Tk() Image_ = Image.open("optical.jpg") ImageForTK = ImageTk.PhotoImage(Image_) ImageCanvas = ...
0
votes
1answer
48 views

Unable to show an image using python PIL Image.show

I'm using the Python Imaging Library and I am unable to open an image successfully in Windows Live Photo Gallery. There is a message that shows up saying "There are no photos or videos selected" ...
0
votes
2answers
26 views

django error when upload image in admin panel

When i try upload image in admin panel i get message: 'tuple' object has no attribute 'startswith' #models.py class Category(models.Model): title = models.CharField(max_length=255) slug ...
0
votes
1answer
17 views

Fingerprinting the file type of a string of data in python

I'd like to be able to read in the first couple kilobytes of unknown file types and see if it matches any known file types (i.e. mp3 file, jpeg, etc...). I was thinking of trying to load meta data ...
1
vote
1answer
23 views

PIL saving only the first image

I'm trying to do some batch image processing, but I'm having trouble saving the images once they are created. Here is all of the code: import Image import os import random training_images = [] ...
0
votes
1answer
38 views

Font Error When Drawing Text to an Image

I'm writing a script that takes my grades from my school grade website and draws the grades onto an image and saves it as my background and I'm trying to change the font when i draw the text onto the ...
2
votes
1answer
41 views

Loading a blob(Google app Engine) into PIL or NumPy

I'd like to be able to load a blob(image into the Python Image Processing Library or into a numpy array for analysis(such as mean, median, standard deviation) without using the serving url. Here is ...
0
votes
2answers
56 views

Taking Output and Inputting it

Im writing a program that takes my school grades and makes them my desktop background when the program parses my grades from the site it returns them all as one Code that retrieves grades from the ...
-1
votes
2answers
149 views

How to integrate simpleGUI with python 2.7 and 3.0 shell

I am learning Python from coursera. In this course they use simpleGUI module on Codeskulpture. Can anyone tell me how to integrate simpleGUI with python 2.7 and 3.0 shell... Thanks
0
votes
1answer
33 views

Python Imaging Library corrupts the pixel data

I have a jpg image, using PIL I am obtaining the pixel data of the image, making some changes (cyclically permuting the RGB values) for certain pixels (leaving the other pixels untouched) and then ...
0
votes
0answers
24 views

PIL returns empty boxes instead of images

I'm trying to write a program in Python 3 using PIL and am having hard time displaying image... I am using dictionaries to temporarily store variables from config.ini usernames={} usericons={} for i ...
0
votes
1answer
93 views

Add Text on Image using PIL.

I have an application that loads an Image and when the user clicks it, a text area appears for this Image (using jquery), where user can write some text on the Image. Which should be added on Image. ...
0
votes
1answer
33 views

Pixel by pixel data in python

I want to do the following: Load a ong image to the python code Get the pixel by pixel RGB data in three arrays, one each for R, G and B. I mean R[i,j] should give me the value of R at the i,j th ...
-2
votes
2answers
31 views

Better image editor like mspaint? [closed]

When trying to save a BMP format image captured by external camera and accessed using mspaint.exe, there are some conversion loss occurring. When the image is compared with a selected co-ordinate ...
1
vote
1answer
45 views

Pebble watch font2png.py, “An Integer is Required” error

Pebble Github: font2png.py I am having difficult getting this code to run. I'm attempting to use the font2png.py but it won't work. I run the command python fonttools/font2png.py and I keep ...
0
votes
1answer
45 views

PIL Module and 500 Server Error when running foursquare connected app

I am getting the following errors even though I downloaded and installed PIL in for my foursquare connected app. Need some help please. Could not initialize images API 500 Server Error
0
votes
0answers
43 views

Inverted tiff images and photometric interpretation tag in PIL?

I'm creating black and white TIF images from scratch and drawing text on them using Python's Imaging Library. Using Python 2.7, PIL 1.1.7 on Windows 7. To create each image, I use this code def ...
0
votes
0answers
17 views

How do I select a font using PIL which will display quote signs correctly?

I am trying to use draw.text to overlay a text file on an image created with draw.image. I have successfully converted the string to a list of words and everything works fine until the program tries ...
0
votes
0answers
15 views

Jpegs in Django-wiki

I'm trying to get django-wiki running. It works well so far, except I can't display .jpeg images. At first I had trouble when only importing jpeg files in the webapp. I fixed this modifying setup.py ...
2
votes
3answers
78 views

Image.show() won't display the picture

I'm running a python script but it won't show the picture. I have an apple.jpg image in a directory with this program and it should show the picture, but it doesn't. Here is the code: ...
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
37 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
38 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 ...

1 2 3 4 5 26