Re: saving multiple versions of an uploaded image

2008-11-11 Thread Chris Amico
Trying out sorl.thumbnail now. Looks like it should do just what I need. Django-Photologue is impressive, but I think it's more than I need at the moment. Thanks folks. On Nov 5, 12:02 am, David Christiansen <[EMAIL PROTECTED]> wrote: > It's also worth looking into the sorl.thumbnail library.  T

Re: saving multiple versions of an uploaded image

2008-11-05 Thread TiNo
Or take a look at photologue. Does all this for you. http://code.google.com/p/django-photologue/ On Wed, Nov 5, 2008 at 9:02 AM, David Christiansen <[EMAIL PROTECTED]> wrote: > > It's also worth looking into the sorl.thumbnail library. This has an > ImageWithThumbnailField that does this work f

Re: saving multiple versions of an uploaded image

2008-11-05 Thread David Christiansen
It's also worth looking into the sorl.thumbnail library. This has an ImageWithThumbnailField that does this work for you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, s

Re: saving multiple versions of an uploaded image

2008-11-04 Thread varikin
On Nov 4, 2:33 am, Chris Amico <[EMAIL PROTECTED]> wrote: > Hi folks, > > I'm trying to turn one uploaded image into several: a full-size and > thumbnail (and more, eventually). Here's the model I'm playing with, > just for testing: > > class TestPhoto(models.Model): >     "This is only for test

saving multiple versions of an uploaded image

2008-11-04 Thread Chris Amico
Hi folks, I'm trying to turn one uploaded image into several: a full-size and thumbnail (and more, eventually). Here's the model I'm playing with, just for testing: class TestPhoto(models.Model): "This is only for testing. Delete it later and make a real photo model" title = models.CharF