Re: PIL how to enlarge image

2010-12-04 Thread Tim Roberts
robos85 wrote: > >Hi, I try to enlarge original image. >I have image in size: 100x100 and I want to make it 120x120. >But resize() doesn't make it bigger. Is there any method for that? "resize" does not change the image. Instead, it returns the resized image. If you don't need the original any m

Re: PIL how to enlarge image

2010-12-04 Thread Alain Ketterlin
robos85 writes: > Hi, I try to enlarge original image. > I have image in size: 100x100 and I want to make it 120x120. > But resize() doesn't make it bigger. Is there any method for that? You have to use i.transform() -- Alain. -- http://mail.python.org/mailman/listinfo/python-list