Tagged Questions

1
vote
2answers
20 views

changing image resolution in Python for a .bmp file

hi, I want to change the resolution of the .bmp image in python. ( i.e. the pixel/inch information) . Using PIL, for jpg image, for instance, the following code works fine import Image im = …
0
votes
2answers
40 views

fonts clipping with PIL

This image was created with PIL. See how the g's and the y's are cut off in this image? How can I prevent this? The code that created this image is pretty straight forward (abbreviated): import …
1
vote
2answers
37 views

Methods to create text preview from a font

I'm currently using ImageMagick's convert command to create text preview (.png) from .ttf font file. Overall, it's good in auto text positioning despite it failed to read some valid .ttf file …
0
votes
3answers
38 views

How to combine multiple images fast for page views counter

How can I combine multiple images, such as base image with logo and number of digits images to display graphical counter with pageviews count, updated dynamically? It should be very fast, with …
1
vote
3answers
40 views

Django form in Google App Engine unable to find module PIL.

There are actually a couple of questions here. For what I'm doing, I'm doing a basic image upload with Django 1.1 and Google App Engine. Here is my form class: class UploadPictureForm(forms.Form): …
7
votes
3answers
137 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
2answers
45 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
2answers
59 views

Validate image size in django admin

I see a lot of people with Django apps that have image uploads are automatically resizing the images after they are uploaded. That is well and good for some cases, but I don't want to do this. …
1
vote
2answers
44 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.
1
vote
6answers
106 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 …
1
vote
1answer
53 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
1answer
48 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 …
2
votes
2answers
92 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 …
2
votes
1answer
380 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 …
0
votes
2answers
113 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 2 3 4 5 8 next
15 30 50 per page