0
votes
5answers
98 views
How to resize just uploaded image?
In VIEW I want to resize uploaded image and save 2 copies of it in model real and changed
0
votes
1answer
13 views
Unable to use PIL after installing using pythononmac.org package (Mac OS Leopard)
I'm trying to use PIL for a Google App Engine project. I've installed PIL using the installer from pythononmac.org but it doesn't seem to do anything, or at least neither I nor Pyt …
0
votes
2answers
73 views
Fractal image scaling with Python
I am in a position where relatively low resolution images are provided (via an API, higher resolution images are not available) and high resolution images need to be generated.
I' …
1
vote
1answer
36 views
Approaches to resize an uploaded image of unknown format with Python
PIL is great for resizing an image 99% of time. But as there are some formats which PIL cannot handle, e.g. interlaced PNG images, I wonder is there any other libraries to work wit …
1
vote
3answers
50 views
convert PyQt to PIL image
I have an image in a QImage and I want to process it in PIL before I display it. While the ImageQT class lets me convert a PIL Image to a QImage, there doesn't appear to anything t …
4
votes
4answers
209 views
python image recognition
hi, what I want to do is a image recognition for a simple app:
given image (500 x 500) pxs ( 1 color background )
the image will have only 1 geometric figure (triangle or square …
2
votes
1answer
185 views
How do I create an OpenCV image from a PIL image?
I want to do some image processing with OpenCV (in Python), but I have to start with a PIL Image object, so I can't use the cvLoadImage() call, since that takes a filename.
This …
2
votes
3answers
131 views
PIL Best Way To Replace Color?
I am trying to remove a certain color from my image however it's not working as well as I'd hoped. I tried to do the same thing as seen here http://stackoverflow.com/questions/7657 …
6
votes
3answers
115 views
How to use PIL to resize and apply rotation EXIF information to the file ?
Hello,
I am trying to use Python to resize picture.
With my camera, files are all written is landscape way.
The exif information handle a tag to ask the image viewer to rotate in …
1
vote
2answers
84 views
Python Image Uploading with AjaxUpload
I'm trying to use AjaxUpload with Python:
http://valums.com/ajax-upload/
I would like to know how to access the uploaded file with Python. On the web site, it says:
* PHP: $_FI …
0
votes
3answers
287 views
Snow Leopard Python 2.6 problems getting PIL to work
I installed libjpeg and PIL, but when I try to save a JPG image, I always get this error:
ImportError: The _imaging C module is not installed
Any help much appreciated!
I tried …
6
votes
7answers
2k views
Installing Python Imaging Library (PIL) on Snow Leopard with updated Python 2.6.2
I have a fresh install (started with a wiped drive) of Snow Leopard with the developer tools installed during the Snow Leopard installation. I then installed Python 2.6.2, replacin …
0
votes
1answer
36 views
Preserving extent from the old image
I am using PIL 1.1.6, python 2.5 on windows platform.
In my program I am performing point operation (changing the pixel values) and then saving the new image.
When I am loading t …
2
votes
1answer
122 views
PIL vs Python-GD for crop and resize
Dear Stackoverflow'ers,
I am creating custom images that I later convert to an image pyramid for Seadragon AJAX. The images and image pyramid are created using PIL. It currently …
2
votes
3answers
117 views
App Engine image resize without maintaining aspect ratio?
When I call resize on images using app engine, they maintain their aspect ratio - I don't end up with the size I ask for.
I'm trying to make rectangular pixel NTSC images from squ …
