0
votes
2answers
160 views
HowTo put region of Pyglet image into PIL Image?
My app reads frames from video (using pyglet), extracts a 'strip' (i.e. region - full width by 1 to 6 video lines), then pastes each strip (appends it) into an image that can later be written out an …
6
votes
8answers
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 …
7
votes
3answers
103 views
Any way to make nice antialiased round corners for images in python?
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 arc() method, that allows you to draw a quater-circle, but the quater-circle …
0
votes
1answer
36 views
Python PIL multiply / blend optimisation
Hello,
Im using PIL to overlay multiple dots onto a tile. The dots must change in opacity depending on 'count'.
The dot is a radial black to white gradient, and the resulting tile should contain all …
1
vote
3answers
118 views
How can I make images so that appengine doesn’t make transparent into black on resize?
I'm on the google appengine, and trying to resize images. I do :
from google.appengine.api import images
image = images.resize(contents, w, h)
And for some images I get a nice transparent resize, …
1
vote
2answers
28 views
Draw bold/italic text with PIL?
How to draw bold/italic text with PIL? ImageFont.truetype(file, size) has an option to specify font size only.
2
votes
2answers
82 views
What should i use for a Remote Desktop Control?
Hi everybody i'm new to stackoverflow and to python programming :-)
Can somebody point me in the right direction or suggest me a good way to do this..?
The software I'd like to write is a kind of …
1
vote
1answer
37 views
Django / Python / PIL / sorl-thumbnail generation in bulk - memory error
hi folks!
I'm trying to bulk generate 4 thumnails for each of around 40k images with sorl-thumbnail for my django app. I iterate through all django objects with an ImageWithThumbnailsFieldFile, and …
0
votes
2answers
115 views
Function not being called in Python, why? and how can I solve it?
Hello, I am currently working on python/django site, at the moment I have a template that looks like this
{% extends "shopbase.html" %}
{% block pageid %}products{% endblock %}
{% block …
1
vote
6answers
99 views
Multiplying a tuple by a scalar
I have the following code:
print img.size
print 10 * img.size
this will print
(70, 70)
(70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70)
while I'd like it to print
…
0
votes
3answers
218 views
Resize image twice in Django using PIL
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 …
0
votes
5answers
120 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
28 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 Python can find the …
1
vote
3answers
76 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 to go from a QImage …
0
votes
2answers
95 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've taken a look at …
