0
votes
1answer
8 views
Having trouble installing PIL in Snow Leopard
I followed these instructions:
http://proteus-tech.com/blog/cwt/install-pil-in-snow-leopard/
And everything went as described.
However, at the end, I tried running:
python selftest.py
to verify …
0
votes
1answer
37 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 …
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 …
1
vote
2answers
29 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
84 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
38 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
1answer
29 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 …
0
votes
5answers
121 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
2answers
98 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 …
1
vote
1answer
41 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 with as a supplement to …
1
vote
3answers
77 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 …
2
votes
1answer
295 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 recipe (adapted …
2
votes
3answers
167 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 …
