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 ...
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 ...
1
vote
1answer
172 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
48 views

Where can I get importable _imagingtk.pyd for Python 3.2 on Windows?

In unofficial version of PIL 1.1.7 for Python 3.2 I found critical bug. Impossible to import module _imagingtk using: from PIL import _imagingtk Python writes: "DLL load failed". This module loads ...
2
votes
2answers
1k views

PIP/easy_install PIL in Virtualenv vcvarsall.bat error Windows 7

So I know there's a fair amount of documentation on this already, but I just can't seem to get it to work. I'm deploying a Django app to Heroku, and am trying to install PIL into my virtualenv (a main ...
0
votes
1answer
508 views

Is there any better way to capture the screen than PIL.ImageGrab.grab()?

I am making a screen capture program with python. My current problem is PIL.ImageGrab.grab() gives me the same output as 2 seconds later. For instance, for I think I am not being clear, in the ...
1
vote
1answer
82 views

Django error “no module named follow” on Windows, what's causing this?

I'm trying to run a project a friend sent me using Win7x64 with python 2.7 and Django 1.4/1.3 My friend has a similar setup so it should work but it doesn't. At first I thought it was because I'm ...
0
votes
1answer
331 views

PIL and JPEG library on Windows

I have built Python's PIL library from source (due to an error in the version installed from the installer executable) and can create Image() objects from jpg files on the build computer, however when ...
3
votes
2answers
2k views

Can not pip install PIL in a virtualenv in Windows because of Warning and ValueError

I am trying to install PIL in a virtualenv but have failed. I created a brand new virtualenv and did pip install PIL and got the following C:\Users\s3z\Desktop\My ...
0
votes
1answer
456 views

Can't installing PIL with pip in a virtualenv in Windows Vista

I created a new virtualenv named renamover and then tried to install pil with pip but I believe installation got stuck because the Build directory that is created during pip installations never got ...
0
votes
0answers
91 views

What could be the cause of a pyinstaller made .exe restarting itself even after keyboard interrupt?

I have inadvertently created Frankenstein. Everything runs fine in the interpreter, but after running python pyinstaller.py --onefile myFile.py to make an .exe, upon running it starts behaving ...
2
votes
2answers
452 views

Creating a program in Python 3 for Windows users, cannot use PIL?

I wrote a fairly simple GUI program to automate a few processes for Windows users in Python (as it is the only programming language I am somewhat familiar with that will run on Windows). I would ...
1
vote
1answer
992 views

pil png activestate on windows 7 ZLIB (PNG/ZIP) support not available

I'm trying to port a python program from OS X to Windows 7. This program processes a png with tkinter eg self.logoImg = ImageTk.PhotoImage(Image.open('GrowthPathLogo.png')) The code is failing with ...
1
vote
2answers
316 views

How to generate quality windows icons with images of capital letters inside using Python?

I want to get 26 files (for starters): A.ico, B.ico, ... Z.ico, where they are composed of 16x16 256-color image, and a 32x32 256-color image, where the color of the text is black, and the font is ... ...
0
votes
1answer
261 views

Taking full screen images with Python (Windows)

I've tried a number of things, but all I can get if I try to do an auto screen shot of a full size window is a black screen. I've tried ImageGrab.grab(), and automated Prt Scr press and I've had no ...
1
vote
1answer
657 views

Python Imaging Library (PIL) in virtualenv on windows

I've got a python program that is using a ridiculous amount of extensions, so I'm trying to set up a virtualenv for it. However, one of the libraries it uses is PIL. After installing it, I get an ...
2
votes
2answers
2k views

How to fix “The _imaging C module is not installed” Django/WSGI/Apache

I run my test sites on my home computer which sadly uses Windows. Now, i'm trying to thumbnail an image but i'm getting the error: The _imaging C module is not installed But only when i try to ...
15
votes
1answer
1k views

Active window screenshot with Python PIL and windows API: how to deal with rounded corners?

For this project, I'm taking screenshots with the Windows API (to deal with multi-screens) and convert it to a PIL image; then I add a shadow around the window if wanted. My problem is, the ...
0
votes
1answer
2k views

Image.frombuffer with 16-bit image data

If my windows is in 32-bit color depth mode, then the following code gets a nice PIL Image from a window: def image_grab_native(window): hwnd = win32gui.GetDesktopWindow() left, top, right, ...
8
votes
3answers
2k views

Using Python Image Library with VirtualEnv on Windows

I'm attempting to install the PIL library in an Virtual Enviroment that I have created. Usually to install PIL I'd grab the install, however this won't allow me to choose my virtualenv only my root ...
5
votes
3answers
4k views

Faster method of reading screen pixel in Python than PIL?

Currently I'm using a pixel reader via AutoItv3 to perform some actions in a program that is running direct X; A game. Right now the program works fine but as an exercise I've been rewriting it in ...
3
votes
1answer
650 views

How do I get PIL to work when built on mingw/cygwin?

I'm trying to build PIL 1.1.6 against cygwin or mingw whilst running against a windows install of python. When I do either the build works but I get the following failure when trying to save files. ...