6
votes
3answers
137 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 a way or another.
…
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, replacing the Snow Leopard …
6
votes
3answers
350 views
PIL: Image resizing : Algorithm similar to firefox’s
I'm getting about the same bad looking resizing from all the 4 algorithms of PIL
>>> data = utils.fetch("http://wavestock.com/images/beta-icon.gif")
>>> image = …
6
votes
4answers
1k views
Resize image in Python without losing EXIF data
I need to resize jpg images with Python without losing the original image's EXIF data (metadata about date taken, camera model etc.). All google searches about python and images point to the PIL …
5
votes
1answer
301 views
How to Alter Photographed Document to Look “Scanned”
How can I do this in Python/PIL? I.e., given the four points of an offset rectangle (a photographed document), make it look flat on as if it were scanned. Is there a simple algorithm for it?
Also, …
5
votes
3answers
474 views
What is the fastest way to draw an image from discrete pixel values in Python?
I wish to draw an image based on computed pixel values, as a means to visualize some data. Essentially, I wish to take a 2-dimensional matrix of color triplets and render it.
Do note that this is …
4
votes
4answers
222 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 or smaleyface :) ) …
4
votes
1answer
317 views
How do I generate circuar thumbnails with PIL?
How do I generate circular image thumbnails using PIL?
The space outside the circle should be transparent.
Snippets would be highly appreciated, thank you in advance.
4
votes
4answers
338 views
What’s a more elegant rephrasing of this cropping algorithm? (in Python)
I want to crop a thumbnail image in my Django application, so that I get a quadratic image that shows the center of the image. This is not very hard, I agree.
I have already written some code that …
4
votes
3answers
1k views
How do I draw text at an angle using python’s PIL?
Using Python I want to be able to draw text at different angles using PIL.
For example, imagine you were drawing the number around the face of a clock. The number 3 would appear as expected whereas …
3
votes
2answers
176 views
How to adjust the quality of a resized image in Python Imaging Library?
Hi, thanks for taking time to read my question.
I am working on PIL and need to know if the image quality can be adjusted while resizing or thumbnailing an image. From what I have known is the …
3
votes
1answer
116 views
PIL: Thumbnail and end up with a square image
Calling
image = Image.open(data)
image.thumbnail((36,36), Image.NEAREST)
will maintain the aspect ratio. But I need to end up displaying the image like this:
<img src="/media/image.png" …
3
votes
8answers
550 views
Image resizing with django?
I'm new to Django (and Python) and I have been trying to work out a few things myself, before jumping into using other people's apps. I'm having trouble understanding where things 'fit' in the Django …
3
votes
4answers
260 views
Find images of similar color…
Hello!
Based on suggestions here @ SO, I have cataloged the average color for a set of stock images.
r,g,b = image.convert("RGB").resize((1,1), Image.ANTIALIAS).getpixel((0,0))
Now, I would like …
3
votes
5answers
346 views
Performing Photoshop’s “Luminosity” filter programmatically
I have two JPEG's and would like to overlay one on the other with the same results as the "Luminosity" mode available in Photoshop (and Fireworks). You can read more about Luminosity mode here: …
