active questions tagged pil - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T21:42:24Zhttp://stackoverflow.com/feeds/tag/pilhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1832716/python-pil-multiply-blend-optimisation0Python PIL multiply / blend optimisationToby2009-12-02T12:51:50Z2009-12-02T13:08:05Z
<p>Hello,</p>
<p>Im using PIL to overlay multiple dots onto a tile. The dots must change in opacity depending on 'count'.</p>
<p>The dot is a radial black to white gradient, and the resulting tile should contain all of the dots multiplied together.</p>
<p>If there are a lot of points my current method takes about two seconds, how can I improve the code to make it run faster? Am I going the wrong way about it?</p>
<p>The two calls that take time are Image.blend() and ImageChops.multiply()</p>
<p>It would be better if I could paste the dot onto the white box with the correct alpha then I could loose the call to Image.blend()</p>
<pre><code>tile = Image.new('RGBA', self.expanded_size, 'white')
white_box_orig = Image.new('RGBA', self.expanded_size, 'white')
for x,y,count in points():
if count > self.max_dots:
count = self.max_dots
white_box_with_dot = white_box_orig.copy()
white_box_with_dot.paste(self.dot, (x, y))
white_box_with_dot = Image.blend(white_box_orig, white_box_with_dot, (count/self.max_dots)) # this change the opacity of the dot by overlaying white
tile = ImageChops.multiply(tile, white_box_with_dot)
</code></pre>
http://stackoverflow.com/questions/1828345/any-way-to-make-nice-antialiased-round-corners-for-images-in-python7Any way to make nice antialiased round corners for images in python?DataGreed2009-12-01T19:32:44Z2009-12-02T12:59:41Z
<p>Is there any way to make nice round corners with python? Currently PIL and GD2 are used in my project. Both of them have an <code>arc()</code> method, that allows you to draw a quater-circle, but the quater-circle is not antialiased, so the image looks crispy.</p>
<p>Is there any neat way to make antialiased/smooth round corners?</p>
http://stackoverflow.com/questions/1476514/how-can-i-make-images-so-that-appengine-doesnt-make-transparent-into-black-on-re1How can I make images so that appengine doesn't make transparent into black on resize?Paul Tarjan2009-09-25T10:18:21Z2009-12-01T08:00:07Z
<p>I'm on the google appengine, and trying to resize images. I do :</p>
<pre><code>from google.appengine.api import images
image = images.resize(contents, w, h)
</code></pre>
<p>And for some images I get a nice transparent resize, and others I get a black background.</p>
<p>How can I keep the transparency for all images?</p>
<ul>
<li>Original : <a href="http://www.stdicon.com/g-flat/application/pgp-encrypted" rel="nofollow">http://www.stdicon.com/g-flat/application/pgp-encrypted</a></li>
<li>Black : <a href="http://www.stdicon.com/g-flat/application/pgp-encrypted?size=64" rel="nofollow">http://www.stdicon.com/g-flat/application/pgp-encrypted?size=64</a></li>
<li>Original : <a href="http://www.stdicon.com/gartoon/application/rtf" rel="nofollow">http://www.stdicon.com/gartoon/application/rtf</a> </li>
<li>Black : <a href="http://www.stdicon.com/gartoon/application/rtf?size=64" rel="nofollow">http://www.stdicon.com/gartoon/application/rtf?size=64</a></li>
<li>Original : <a href="http://www.stdicon.com/nuvola/application/x-debian-package" rel="nofollow">http://www.stdicon.com/nuvola/application/x-debian-package</a></li>
<li>Transparent : <a href="http://www.stdicon.com/nuvola/application/x-debian-package?size=64" rel="nofollow">http://www.stdicon.com/nuvola/application/x-debian-package?size=64</a></li>
</ul>
http://stackoverflow.com/questions/1815165/draw-bold-italic-text-with-pil1Draw bold/italic text with PIL?jack2009-11-29T10:16:04Z2009-11-29T10:19:17Z
<p>How to draw bold/italic text with PIL? ImageFont.truetype(file, size) has an option to specify font size only.</p>
http://stackoverflow.com/questions/1812890/what-should-i-use-for-a-remote-desktop-control2What should i use for a Remote Desktop Control?kietto2009-11-28T16:11:08Z2009-11-28T17:11:43Z
<p>Hi everybody i'm new to stackoverflow and to python programming :-)</p>
<p>Can somebody point me in the right direction or suggest me a good way to do this..?</p>
<p>The software I'd like to write is a kind of "multiple remote control", it has:</p>
<ul>
<li><b> One Server </b> ... whose task is to send his screen to all the clients</li>
<li><b>Many Clients</b> ... they show the Server's screen and they are all able to control it (there exist a lot of remote control applications which can do this,but not all the clients together i think .. practically one server with many mice :p .. however all the clients will be managed by the server)</li>
</ul>
<p>Given that I'm new to python i started looking and using these libraries:</p>
<p><b>wxWidget</b> for the gui</p>
<p><b>Twisted</b> for the network connection, because it's an easy way to implement a multicast UDP .. but is udp the right choise to send images to all the clients? =/</p>
<p><b>PIL</b> (Python Imaging Libary) images stuff and to grab the screenshots on the Server machine to send to the clients .. this is the point where I stopped to think to all the possible solutions ... (I wasn't able to send the image to the client, I tried converting it to string but the UDP message was not that big :) )</p>
<p>I've seen many suggest the use of a VNC application .. is it easy to develop my software as described around it (actually i have no idea how..), or grabbing the screen continuously with PIL and sending somehow the images to the clients is an acceptable solution?</p>
<p>Thanks in advance for any help :-) </p>
http://stackoverflow.com/questions/1805256/django-python-pil-sorl-thumbnail-generation-in-bulk-memory-error1Django / Python / PIL / sorl-thumbnail generation in bulk - memory errorHoff2009-11-26T19:13:35Z2009-11-26T20:03:26Z
<p>hi folks!</p>
<p>I'm trying to bulk generate 4 thumnails for each of around 40k images with <a href="http://code.google.com/p/sorl-thumbnail/" rel="nofollow">sorl-thumbnail</a> for my django app. I iterate through all django objects with an ImageWithThumbnailsFieldFile, and then call its generate_thumbnails() function.</p>
<p>This works fine, except that after a few hundred iterations, I run out of memory and my loop crashes with 'memory error'. Since sorl-thumbnail uses PIL to generate thumbs, it seems to be that PIL doesn't return all of the memory it used when generated a thumb.</p>
<p>Does anybody how to avoid this problem, e.g. by forcing PIL to return the memory it no longer needs?</p>
<p>my code simply looks like this:</p>
<pre><code>all = Picture.objects.all()
for i in all:
i.image.generate_thumbnails()
</code></pre>
<p>The function generate-thumbnail starts <a href="http://code.google.com/p/sorl-thumbnail/source/browse/sorl/thumbnail/fields.py" rel="nofollow">here</a>, line 129. </p>
<p>Thanks in advance for any advice!</p>
<p>Martin</p>
http://stackoverflow.com/questions/1784197/function-not-being-called-in-python-why-and-how-can-i-solve-it0Function not being called in Python, why? and how can I solve it?sico872009-11-23T16:16:47Z2009-11-23T18:59:06Z
<p>Hello, I am currently working on python/django site, at the moment I have a template that looks like this</p>
<pre><code> {% extends "shopbase.html" %}
{% block pageid %}products{% endblock %}
{% block right-content %}
<img src="{{MEDIA_URL}}/local/images/assets/products.png" alt="Neal and Wolf News" class="position"/>
<div class="products">
<form method="post" action="{% url category category.slug %}">
{% for product in category.products.all %}
<div class="{% cycle 'clear' '' '' %}">
<img src="{{MEDIA_URL}}{{download.mini.thumbnail}}" alt="{{product.name}}" class="thumbnail"/>
<h3><a href="{% url shop.views.product category.slug product.slug %}">{{ product.product_type_name }}</a></h3>
<p class="strap">{{ product.product_sub_name }}</p>
<p>{{ product.strap }}</p>
<ul class="clear">
<li class="price"><b>&pound;{{product.price}}</b></li>
<li class="quantity">
<select name="quantity_{{product.id}}">
<option label="1" value="1">1</option>
<option label="2" value="2">2</option>
<option label="3" value="3">3</option>
<option label="4" value="4">4</option>
<option label="5" value="5">5</option>
<option label="6" value="6">6</option>
<option label="7" value="7">7</option>
<option label="8" value="8">8</option>
<option label="9" value="9">9</option>
</select>
</li>
<li><b><a href="details">Details &gt;</a></b></li>
<li><input type="submit" name="add_to_basket_{{product.id}}" value="Add to Basket &gt;"/></a></li>
</ul>
</div>
{% endfor %}
</form>
</div>
{% endblock %}
</code></pre>
<p>and in the model I have a class that looks like this</p>
<pre><code>def get_thumbnail(self, dimension, on=RES_X, use=USE_BOTH):
"""
Generate a thumbnail image for this Store Object. The thumbnail will be
of size 'dimension' on the axis specified by the on parameter (which is
deduced from calling x_or_y). If the use parameter is set to USE_BOTH
then the thumbnail will take priority in the generation order. In other
words, the function checks for the existance of an uploaded thumbnail.
If one exists, it will use that, otherwise the image field is used
instead. Specifying either USE_IMAGE or USE_THUMBNAIL here will force
the generation to a particular asset.
The image is saved out as a jpeg with the quality set to 90. The
path relative to the MEDIA_ROOT is then returned.
"""
from PIL import Image
import os
if self.thumbnail and use != StoreObject.USE_IMAGE:
source_path = str(self.thumbnail)
elif self.image and use != StoreObject.USE_THUMBNAIL:
source_path = str(self.image)
else:
return ""
try:
against = StoreObject.x_or_y(on)
except KeyError:
return ""
target_path = os.path.join(StoreObject.GENERATED_THUMB_LOCATION, "%s-%d%s.png" % (self.slug, dimension, against))
savepath = os.path.join(settings.MEDIA_ROOT, target_path)
loadpath = os.path.join(settings.MEDIA_ROOT, source_path)
if os.path.exists(savepath) and os.path.getmtime(savepath) > os.path.getmtime(loadpath):
return target_path
try:
img = Image.open(loadpath)
except IOError:
return ""
aspect = float(img.size[0]) / float(img.size[1])
if against == StoreObject.RES_X:
height = dimension / aspect
width = dimension
elif against == StoreObject.RES_Y:
width = dimension * aspect
height = dimension
img = img.resize((width,height), Image.ANTIALIAS)
img.convert('RGBA').save(savepath, "PNG")
return target_path
def mini_thumbnail(self):
"""
Generate and return the path to, a thumbnail that is 50px high
"""
return self.get_thumbnail(50, "x")
def preview_image(self):
"""
Generate and return the path to, a thumbnail that is 300px wide, build
from the image field
"""
return self.get_thumbnail(300, use=StoreObject.USE_IMAGE)
def preview_thumbnail(self):
"""
Generate and return the path to, a thumbnail that is 300px wide, build
from the thumbnail field
"""
return self.get_thumbnail(300, use=StoreObject.USE_THUMBNAIL)
</code></pre>
<p>Now as you can see I am trying to pull out of the database some information on a certain item, and show an image of that item in a thumbnail which generated from the thumbnail function above (in the template I using product.mini_thumbnail however there seems to be know image? however if I print product.image with my MEDIA_URL then I get the fullsized image. Can anyone suggest what might be happening?</p>
http://stackoverflow.com/questions/1781970/multiplying-a-tuple-by-a-scalar1Multiplying a tuple by a scalardevoured elysium2009-11-23T09:19:40Z2009-11-23T09:40:59Z
<p>I have the following code:</p>
<pre><code>print img.size
print 10 * img.size
</code></pre>
<p>this will print</p>
<pre><code>(70, 70)
(70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70)
</code></pre>
<p>while I'd like it to print</p>
<pre><code>(700, 700)
</code></pre>
<p>Is any way there to do this without having to write</p>
<pre><code>print (10 * img.size[0], 10 * img.size[1])
</code></pre>
<p>PS: img.size is a PIL image. Dunno if that matters anything in this case.</p>
http://stackoverflow.com/questions/1485569/resize-image-twice-in-django-using-pil0Resize image twice in Django using PILorokusaki2009-09-28T05:39:33Z2009-11-23T06:11:41Z
<p>I have a function in which I'm trying to resize a photo twice from request.FILES['image']. I'm using the image.thumbnail() with the Parser as well. This works fine when I create one thumbnail, but in my view if I repeat the exact same thing again, it fails in the parser via IOError cannot parse image. I'm very confused. I've created StringIO files in memory instead of using Django's UploadedFile object as-is and it still does the same thing. Any help is much appreciated.</p>
<p>Suppose I wanted to do the following twice (with two different thumbnailing sizes) all without retrieving the URL twice:</p>
<pre><code>import urllib2
from PIL import Image, ImageFile, ImageEnhance
# create Image instance
file = urllib2.urlopen(r'http://animals.nationalgeographic.com/staticfiles/NGS/Shared/StaticFiles/animals/images/primary/kemps-ridley-sea-turtle.jpg')
parser = ImageFile.Parser()
while True:
s = file.read(1024)
if not s:
break
parser.feed(s)
image = parser.close()
# make thumbnail
size = (75, 75)
image.thumbnail(size, Image.ANTIALIAS)
background = Image.new('RGBA', size, (255, 255, 255, 0))
background.paste(
image,
((size[0] - image.size[0]) / 2, (size[1] - image.size[1]) / 2))
background.save('copy.jpg')
</code></pre>
<p>For instance:</p>
<pre><code>image = parser.close()
image2 = parser.close() # Obviously this doens't work
image2 = image # Obviously this doesn't either but you get what I need to do here
# Do 2 thumbnails with only one original source.
</code></pre>
<p>... other code ommitted ...</p>
<pre><code>image.save('copy.jpg')
image2.save('copy.jpg')
</code></pre>
http://stackoverflow.com/questions/1769683/how-to-resize-just-uploaded-image0How to resize just uploaded image?Oduvan2009-11-20T10:46:45Z2009-11-21T09:19:57Z
<p>In VIEW I want to resize uploaded image and save 2 copies of it in model real and changed</p>
http://stackoverflow.com/questions/1774825/unable-to-use-pil-after-installing-using-pythononmac-org-package-mac-os-leopard0Unable to use PIL after installing using pythononmac.org package (Mac OS Leopard)donut2009-11-21T07:27:57Z2009-11-21T09:11:00Z
<p>I'm trying to use PIL for a Google App Engine project. I've installed PIL using the <a href="http://pythonmac.org/packages/py25-fat/index.html" rel="nofollow">installer from pythononmac.org</a> but it doesn't seem to do anything, or at least neither I nor Python can find the files. I'm running Python 2.5.1.</p>
http://stackoverflow.com/questions/1733096/convert-pyqt-to-pil-image1convert PyQt to PIL imagedirectedition2009-11-14T03:08:15Z2009-11-19T23:07:44Z
<p>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 to go from a QImage to a PIL Image.</p>
http://stackoverflow.com/questions/1750290/fractal-image-scaling-with-python0Fractal image scaling with PythonJim Robert2009-11-17T17:02:45Z2009-11-17T18:48:42Z
<p>I am in a position where <strong>relatively low resolution</strong> images are provided (via an API, higher resolution images are not available) and <strong>high resolution</strong> images need to be generated.</p>
<p>I've taken a look at <a href="http://www.pythonware.com/products/pil/" rel="nofollow">PIL</a> and it's just great for about everything... Except scaling up images.</p>
<p>It has the common <a href="http://www.pythonware.com/library/pil/handbook/image.htm#Image.resize" rel="nofollow">resizing algorithms</a>:</p>
<ul>
<li>Nearest Neighbor</li>
<li>Bilinear</li>
<li>Bicubic</li>
<li>Anti-aliased</li>
</ul>
<p>I would like to use Fractal Resizing (as per <a href="http://www.codinghorror.com/blog/archives/000903.html" rel="nofollow">jeff's post on coding horror</a>), but alas, PIL has no support for this kind of resizing.</p>
<p>Further Google searches yield no alternative libraries to provide fractal image resizing either.</p>
<p>Does such a thing exist or do I really have to buckle down and write my own fractal resizing algorithm?</p>
<p>I'm no expert but from my current vantage point, that looks like a pretty steep learning curve :(</p>
<p>If no such library exists, maybe you have some advice where to learn about fractal compression algorithms?</p>
http://stackoverflow.com/questions/1740682/approaches-to-resize-an-uploaded-image-of-unknown-format-with-python1Approaches to resize an uploaded image of unknown format with Pythonjack2009-11-16T07:46:06Z2009-11-16T10:14:41Z
<p>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 with as a supplement to PIL when we encounter a unsupported image.</p>
<p>Besides interlaced PNG images, what other formats are not currently supported by PIL? As users may upload whatever images they have, how do we pass those images unrecognized by PIL to correct third party libraries to convert to standard format?</p>
<p>Making system call to ImageMagick's convert command may do the job but it's not convenient to get original image's dimensions before conversion.</p>
http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image3numpy, PIL adding an imagerem72009-02-08T01:15:16Z2009-11-11T04:49:56Z
<p>I'm trying to add two images together using numpy and PIL. The way I would do this in matlab would be something like:</p>
<pre><code>>> M1 = imread('_1.jpg');
>> M2 = imread('_2.jpg');
>> resM = M1 + M2;
>> imwrite(resM, 'res.jpg');
</code></pre>
<p>I get something like this:</p>
<p><img src="http://www.infiniteloop.cc/matlab.jpg" alt="alt text" /></p>
<p>Using a compositing program and adding the images the matlab result seems to be right.</p>
<p>In python I'm trying to do the same thing like this:</p>
<pre><code>from PIL import Image
from numpy import *
im1 = Image.open('/Users/rem7/Desktop/_1.jpg')
im2 = Image.open('/Users/rem7/Desktop/_2.jpg')
im1arr = asarray(im1)
im2arr = asarray(im2)
addition = im1arr + im2arr
resultImage = Image.fromarray(addition)
resultImage.save('/Users/rem7/Desktop/a.jpg')
</code></pre>
<p>and i get something like this:</p>
<p><img src="http://www.infiniteloop.cc/python.jpg" alt="alt text" /></p>
<p>Why am I getting all those funky colors? I also tried using ImageMath.eval("a+b", a=im1, b=im2), but I get an error about RGB unsuported.</p>
<p>I also saw that there is an Image.blend() but that requieres an alpha.</p>
<p>Whats the best way to achieve what I'm looking for?</p>
<p>Source Images:</p>
<p><img src="http://www.infiniteloop.cc/_1.jpg" alt="alt text" />
<img src="http://www.infiniteloop.cc/_2.jpg" alt="alt text" /></p>
<p>humm, ok well I added the source images using the add image icon and they show up when I'm editing the post, but for some reason the images don't show up in the post. </p>
http://stackoverflow.com/questions/1517959/python-image-uploading-with-ajaxupload1Python Image Uploading with AjaxUploadresopollution2009-10-05T02:00:14Z2009-11-09T05:03:09Z
<p>I'm trying to use AjaxUpload with Python:
<a href="http://valums.com/ajax-upload/" rel="nofollow">http://valums.com/ajax-upload/</a></p>
<p>I would like to know how to access the uploaded file with Python. On the web site, it says:</p>
<pre><code>* PHP: $_FILES['userfile']
* Rails: params[:userfile]
</code></pre>
<p>What is the Syntax for Python?</p>
<p>request.params['userfile'] doesn't seem to work.</p>
<p>Thanks in advance! Here is my current code (using PIL imported as Image)</p>
<pre><code>im = Image.open(request.params['myFile'].file)
</code></pre>
http://stackoverflow.com/questions/1603688/python-image-recognition4python image recognitionpanchicore2009-10-21T21:13:19Z2009-11-06T17:37:36Z
<p>hi, what I want to do is a image recognition for a simple app:</p>
<ol>
<li>given image (500 x 500) pxs ( 1 color background )</li>
<li>the image will have only 1 geometric figure (triangle or square or smaleyface :) ) of (50x50) pxs.</li>
<li>python will do the recognition of the figure and display what geometric figure is.</li>
</ol>
<p>any links? any hints? any API? thxs :)</p>
http://stackoverflow.com/questions/1518573/snow-leopard-python-2-6-problems-getting-pil-to-work0Snow Leopard Python 2.6 problems getting PIL to workresopollution2009-10-05T06:59:33Z2009-11-04T21:15:43Z
<p>I installed libjpeg and PIL, but when I try to save a JPG image, I always get this error:</p>
<p><strong>ImportError: The _imaging C module is not installed</strong></p>
<p>Any help much appreciated!</p>
<p>I tried to import _imaging w/ Python interpreter to see what's wrong and got this:</p>
<pre><code> >>> import _imaging
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/PIL/_imaging.so, 2): Symbol not found: _jpeg_resync_to_restart
Referenced from: /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/PIL/_imaging.so
Expected in: dynamic lookup
</code></pre>
http://stackoverflow.com/questions/1650568/how-do-i-create-an-opencv-image-from-a-pil-image2How do I create an OpenCV image from a PIL image?scrible2009-10-30T15:38:23Z2009-11-03T16:31:03Z
<p>I want to do some image processing with OpenCV (in Python), but I have to start with a PIL <code>Image</code> object, so I can't use the <code>cvLoadImage()</code> call, since that takes a filename. </p>
<p>This recipe (adapted from <a href="http://opencv.willowgarage.com/wiki/PythonInterface" rel="nofollow">http://opencv.willowgarage.com/wiki/PythonInterface</a>) does not work because <code>cvSetData</code> complains <code>argument 2 of type 'void *'</code> . Any ideas?</p>
<pre><code>from opencv.cv import *
from PIL import Image
pi = Image.open('foo.png') # PIL image
ci = cvCreateImage(pi.size, IPL_DEPTH_8U, 1) # OpenCV image
data = pi.tostring()
cvSetData(ci, data, len(data))
</code></pre>
<p>I think the last argument to the <code>cvSetData</code> is wrong too, but I am not sure what it should be.</p>
http://stackoverflow.com/questions/1308710/transparency-in-pngs-with-reportlab-2-32Transparency in PNGs with reportlab 2.3 Dire Fungasaur2009-08-20T20:45:23Z2009-10-26T15:01:40Z
<p>I have two PNGs that I am trying to combine into a PDF using ReportLab 2.3 on Python 2.5. When I use canvas.drawImage(ImageReader) to write either PNG onto the canvas and save, the transparency comes out black. If I use PIL (1.1.6) to generate a new Image, then paste() either PNG onto the PIL Image, it composits just fine. I've double checked in Gimp and both images have working alpha channels and are being saved correctly. I'm not receiving an error and there doesn't seem to be anything my google-fu can turn up. </p>
<p>Has anybody out there composited a transparent PNG onto a ReportLab canvas, with the transparency working properly? Thanks!</p>
http://stackoverflow.com/questions/1616767/pil-best-way-to-replace-color2PIL Best Way To Replace Color?Cookies2009-10-24T02:42:12Z2009-10-24T22:25:04Z
<p>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 <a href="http://stackoverflow.com/questions/765736/using-pil-to-make-all-white-pixels-transparent">http://stackoverflow.com/questions/765736/using-pil-to-make-all-white-pixels-transparent</a> however the image quality is a bit lossy so it leaves a little ghost of odd colored pixels around where what was removed. I tried doing something like change pixel if all three values are below 100 but because the image was poor quality the surrounding pixels weren't even black.</p>
<p>Does anyone know of a better way with PIL in Python to replace a color and anything surrounding it? This is probably the only sure fire way I can think of to remove the objects completely however I can't think of a way to do this.</p>
<p>The picture has a white background and text that is black. Let's just say I want to remove the text entirely from the image without leaving any artifacts behind.</p>
<p>Would really appreciate someone's help! Thanks </p>
http://stackoverflow.com/questions/1606587/how-to-use-pil-to-resize-and-apply-rotation-exif-information-to-the-file5How to use PIL to resize and apply rotation EXIF information to the file ?Natim2009-10-22T11:28:40Z2009-10-23T10:22:57Z
<p>Hello,</p>
<p>I am trying to use Python to resize picture.
With my camera, files are all written is landscape way.</p>
<p>The exif information handle a tag to ask the image viewer to rotate in a way or another.
Since most of the browser doesn't understand this information, I want to rotate the image using this EXIF information and keeping every other EXIF information.</p>
<p>Do you know how I can do that using Python ?</p>
<p>Reading the EXIF.py source code, I found something like that :</p>
<pre><code>0x0112: ('Orientation',
{1: 'Horizontal (normal)',
2: 'Mirrored horizontal',
3: 'Rotated 180',
4: 'Mirrored vertical',
5: 'Mirrored horizontal then rotated 90 CCW',
6: 'Rotated 90 CW',
7: 'Mirrored horizontal then rotated 90 CW',
8: 'Rotated 90 CCW'})
</code></pre>
<p>How can I use this information and PIL to apply it ?</p>
http://stackoverflow.com/questions/1594223/preserving-extent-from-the-old-image0Preserving extent from the old imageSonai2009-10-20T12:21:14Z2009-10-22T11:44:25Z
<p>I am using PIL 1.1.6, python 2.5 on windows platform.</p>
<p>In my program I am performing point operation (changing the pixel values) and then saving the new image.</p>
<p>When I am loading the new and old image, they are not in the same extent.
How to impose the extent of old image to the new image?</p>
<p>RE edited question:</p>
<p>My code is:</p>
<pre><code>img = Image.open("D:/BTC/dada_72.tif")
out = Image.eval(img, lambda x: x * 5)
out.save("D:/BTC/dada_72_Com.tif")
</code></pre>
<p>Thank you </p>
http://stackoverflow.com/questions/1606514/error-using-the-python-jpeg-module-to-write-exif-information-to-a-jpeg-file1Error using the python jpeg module to write EXIF information to a jpeg file.Natim2009-10-22T11:12:03Z2009-10-22T11:23:32Z
<p>I am using PIL to resize some images. I would like to keep the EXIF information and I found <a href="http://stackoverflow.com/questions/400788/resize-image-in-python-without-losing-exif-data">here</a> how to do so.</p>
<p>But, I doesn't seams to work with my Nikon files :</p>
<pre><code>File "/Library/Python/2.5/site-packages/jpeg/jpeg.py", line 177, in setExif
return _write(exif.binary(), file, exif.jpegMarker)
File "/Library/Python/2.5/site-packages/jpeg/jpeg.py", line 108, in _write
lenHex = util.setNr(len(value)+2, "short") #the length on 2 bytes
File "/Library/Python/2.5/site-packages/jpeg/util.py", line 50, in setNr
val = struct.pack(frm, nr)
File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/struct.py", line 63, in pack
return o.pack(*args)
struct.error: short format requires SHRT_MIN <= number <= SHRT_MAX
</code></pre>
<p>Do you know how I can fix this ?</p>
http://stackoverflow.com/questions/1508416/app-engine-image-resize-without-maintaining-aspect-ratio2App Engine image resize without maintaining aspect ratio?Gareth Simpson2009-10-02T08:54:13Z2009-10-17T20:44:02Z
<p>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.</p>
<p>I'm trying to make rectangular pixel NTSC images from square pixel sources, so I don't want this behaviour</p>
<p>I want to take an image that is 720x540 and resize it to 720x480 but what I actually end up when ask for the resize is an image that is 640x480.</p>
<p>Is there any way round this?</p>
http://stackoverflow.com/questions/1572691/in-python-python-image-library-1-1-6-how-can-i-expand-the-canvas-without-resizi0In Python, Python Image Library 1.1.6, how can I expand the canvas without resizing?MetaHyperBolic2009-10-15T14:23:55Z2009-10-15T16:55:26Z
<p>I am probably looking for the wrong thing in the handbook, but I am looking to take an image object and expand it without resizing (stretching/squishing) the original image. </p>
<p>Toy example: imagine a blue rectangle, 200 x 100, then I perform some operation and I have a new image object, 400 x 300, consisting of a white background upon which a 200 x 100 blue rectangle rests. Bonus if I can control in which direction this expands, or the new background color, etc.</p>
<p>Essentially, I have an image to which I will be adding iteratively, and I do not know what size it will be at the outset. </p>
<p>I suppose it would be possible for me to grab the original object, make a new, slightly larger object, paste the original on there, draw a little more, then repeat. It seems like it might be computationally expensive. However, I thought there would be a function for this, as I assume it is a common operation. Perhaps I assumed wrong.</p>
http://stackoverflow.com/questions/1564464/sane-python-missing-device-after-close-statement0SANE + Python, missing device after close statementOreiA2009-10-14T05:51:10Z2009-10-14T05:51:10Z
<p>I'm having a trouble using SANE on Python to scan an image on a Kodak scanner.</p>
<p>The real headache comes to when I close the scanner device after getting the image, it just disappears from the SANE Devices lists until I restarted the Python interpreter, making impossible to scan another image.</p>
<p>It just acts like that with this scanner, I've tried other already. And with XSane it works nicely.</p>
<p>What can be happening ? Anyone with a similar problem ?</p>
<p>Enviroment:<br />
Ubuntu 9.04<br />
Python 2.6.2<br />
SANE 1.1.6<br />
Kodak i1220 scanner with drivers from their website.</p>
http://stackoverflow.com/questions/1557625/pil-vs-python-gd-for-crop-and-resize2PIL vs Python-GD for crop and resizeVince2009-10-13T00:13:21Z2009-10-13T23:19:52Z
<p>Dear Stackoverflow'ers,</p>
<p>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 take a few hours to generate the images and image pyramid for approximately 100 pictures that have a combined width and height of about 32,000,000 by 1000 (yes, the image is very long and narrow). The performance is roughly similar another algorithm I have tried (i.e. <a href="http://github.com/openzoom/deepzoom.py" rel="nofollow">deepzoom.py</a>). I plan to see if python-gd would perform better due to most of its functionality being coded in C (from the GD library). I would assume a significant performance increase however I am curious to hear the opinion of others. In particular the resizing and cropping is slow in PIL (w/ Image.ANTIALIAS). Will this improve considerable if I use Python-GD?</p>
<p>Thanks in advance for the comments and suggestions.</p>
<p>EDIT: The performance difference between PIL and python-GD seems minimal. I will refactor my code to reduce performance bottlenecks and include support for multiple processors. I've tested out the python 'multiprocessing' module. Results are encouraging.</p>
http://stackoverflow.com/questions/1563347/scaling-images-stored-at-s30Scaling images stored at S3Pete2009-10-13T22:40:19Z2009-10-13T22:48:32Z
<p>I'm in a situation where I need to push image storage for a number of websites out to a service that can scale indefinitely (S3, CloudFiles, etc.). Up until this point we've been able to allow our users to generate custom thumbnail sizes on the fly using Python's Imaging library with some help from <a href="http://code.google.com/p/sorl-thumbnail/" rel="nofollow">sorl-thumbnail</a> in Django.</p>
<p>By moving our images to something like S3, the ability to <em>quickly</em> create thumbnails on the fly is lost. We can either:</p>
<ol>
<li>Do it slowly by downloading the source from S3 and creating the thumbnail locally<br />
<em>con: it is slow and bandwidth intensive</em></li>
<li>Do it upfront by creating a pre-determined set of thumbnail sizes (a'la Flickr) and pushing them all to S3<br />
<em>con: it limits the sizes that can be generated and stores lots of files that will never be used</em></li>
<li>Let the browser resize using the height/width attributes on the img tag.<br />
<em>con: extra bandwidth used by downloading larger than necessary files</em></li>
</ol>
<p>At this point #3 looks to be a simple solution to the problem with few drawbacks. Some quick tests and <a href="http://www.graphicrating.com/2009/01/03/web-browsers-war-image-rendering/" rel="nofollow">data from this website</a> show that the quality isn't as bad as expected (we could assure the aspect ratio is maintained).</p>
<p>Any suggestions on other options or drawbacks we might not be taking into consideration?</p>
<p><em>note: The images are digital photos and are only used for display on the web. Sizes would range from 1000-50 pixels in height/width.</em></p>
http://stackoverflow.com/questions/1560734/histogram-in-matplotlib-gets-cropped-at-top0Histogram in matplotlib gets cropped at topGordon Worley2009-10-13T14:52:01Z2009-10-13T15:02:52Z
<p>I have a Python program that generates a histogram using matplotlib. The problem is that the images that are generated sometimes get cropped at the top. First, here's the relevant code excerpt, where <code>plt</code> is <code>matplotlib.pyplot</code> and <code>fig</code> is <code>matplotlib.figure</code>:</p>
<pre><code>plt.hist(grades, bins=min(20, maxScore), range=(0,maxScore), figure=fig.Figure(figsize=(3,2), dpi=150))
plt.xlabel("Raw Score")
plt.ylabel("Count")
plt.title("Raw Score Histogram")
plt.savefig(histogramFile)
</code></pre>
<p>The problem appears in a situation like the following. I might have 300 elements in <code>grades</code>, 3 of the bins have more than 20 elements in them, and the rest less than 20. The ones with more than 20 will have their tops cut off and the y-axis will only go up to 20. This doesn't always happen though: a different 300 elements in <code>grades</code> with a similar distribution might render correctly, with the y-axis scaling to fit within the <code>figsize</code>. Also note that the x-axis always comes out right.</p>
<p>What can I do to get the y-axis to scale correctly and produce bars that fit within the image?</p>