I'm having trouble getting PIL to enlarge an image. Large images get scaled down just fine, but small images won't get bigger.

# get the ratio of the change in height of this image using the
# by dividing the height of the first image
s = h / float(image.size[1])
# calculate the change in dimension of the new image
new_size = tuple([int(x*s) for x in image.size])
# if this image height is larger than the image we are sizing to
if image.size[1] > h: 
    # make a thumbnail of the image using the new image size
    image.thumbnail(new_size)
    by = "thumbnailed"
    # add the image to the images list
    new_images.append(image)
else:
    # otherwise try to blow up the image - doesn't work
    new_image = image.resize(new_size)
    new_images.append(new_image)
    by = "resized"
logging.debug("image %s from: %s to %s" % (by, str(image.size), str(new_size)))
link|improve this question
feedback

2 Answers

I think its because of this line. You need to store the resized image in a new object.

image.thumbnail(new_size)

should be

newimage = image.thumbnail(new_size)
link|improve this answer
Thumbnail is not the problem, it's resize. Thumbnail edits the image object, resize returns a copy. Thanks though! – Grant Eagon Mar 9 '11 at 20:30
feedback

For anyone reading this, having the same problem - try it on another machine. I got both

im = im.resize(size_tuple)

and

im = im.transform(size_tuple, Image.EXTENT, (x1,y1,x2,y2)

to properly resize files. There must be something wrong with the python installation on my server. Worked fine on my local machine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.