Re: [Tutor] Image manipluation (On-the-fly thumbnail creation)

2009-09-18 Thread dan06


Patrick Sabin wrote:
 
 When I needed thumbnails of my images, I created them using ImageMagick. 
   ImageMagick is a very nice tool for editing images and since it is 
 called from the command line it is easy to invoke it from a programming 
 language. There are python-bindings for it, but I think they are not 
 very actively maintained and so I wouldn't use them.
 
 Using PIL is another option and maybe more pythonic, but if you are 
 familiar with ImageMagick it might be a good alternative.
 
 - Patrick
 

My experiences with ImageMagick (IM) are limited, but what experiences I
have had have been good. The functionality of IM is superb, and that is the
impetus for wanting to use it over other softwares/libraries. Ultimately, I
want to use IM/Python to replicate something I did in GD/PHP. Using GD/PHP I
was able to create thumbnails on-demand that I could output directly to the
browser, rather than creating  saving thumbnails to the disk. Is this
possible with IM/Python?
-- 
View this message in context: 
http://www.nabble.com/Image-manipluation-%28On-the-fly-thumbnail-creation%29-tp25456792p25514113.html
Sent from the Python - tutor mailing list archive at Nabble.com.

___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


[Tutor] Image manipluation (On-the-fly thumbnail creation)

2009-09-15 Thread dan06

I've recently delved into python, about a week or so ago; I'm trying to
figure out how to create on-the-fly thumbnails. Are there python standard
library modules I could/should use or should I use external libraries like:
GD, Gimp, or ImageMagick?  
-- 
View this message in context: 
http://www.nabble.com/Image-manipluation-%28On-the-fly-thumbnail-creation%29-tp25456792p25456792.html
Sent from the Python - tutor mailing list archive at Nabble.com.

___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Image manipluation (On-the-fly thumbnail creation)

2009-09-15 Thread vince spicer
On Tue, Sep 15, 2009 at 10:03 AM, dan06 dan.king...@yahoo.com wrote:


 I've recently delved into python, about a week or so ago; I'm trying to
 figure out how to create on-the-fly thumbnails. Are there python standard
 library modules I could/should use or should I use external libraries like:
 GD, Gimp, or ImageMagick?
 --
 View this message in context:
 http://www.nabble.com/Image-manipluation-%28On-the-fly-thumbnail-creation%29-tp25456792p25456792.html
 Sent from the Python - tutor mailing list archive at Nabble.com.

 ___
 Tutor maillist  -  Tutor@python.org
 To unsubscribe or change subscription options:
 http://mail.python.org/mailman/listinfo/tutor



check out:

http://www.pythonware.com/products/pil/


creating thumbnail example here

http://www.pythonware.com/library/pil/handbook/image.htm


Vince
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Image manipluation (On-the-fly thumbnail creation)

2009-09-15 Thread Ajith Gopinath
import glob
import Image

for infile in glob.glob(*.jpg):
  im = Image.open(infile)
  # converting to thumbnail image
  im.thumbnail((128, 128), Image.ANTIALIAS)
  im.save(thumb + infile, JPEG)

Will this be of ur help Vince?

On 15/09/2009, vince spicer vinces1...@gmail.com wrote:
 On Tue, Sep 15, 2009 at 10:03 AM, dan06 dan.king...@yahoo.com wrote:


 I've recently delved into python, about a week or so ago; I'm trying to
 figure out how to create on-the-fly thumbnails. Are there python standard
 library modules I could/should use or should I use external libraries
 like:
 GD, Gimp, or ImageMagick?
 --
 View this message in context:
 http://www.nabble.com/Image-manipluation-%28On-the-fly-thumbnail-creation%29-tp25456792p25456792.html
 Sent from the Python - tutor mailing list archive at Nabble.com.

 ___
 Tutor maillist  -  Tutor@python.org
 To unsubscribe or change subscription options:
 http://mail.python.org/mailman/listinfo/tutor



 check out:

 http://www.pythonware.com/products/pil/


 creating thumbnail example here

 http://www.pythonware.com/library/pil/handbook/image.htm


 Vince



-- 
|| a j i t ||
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Image manipluation (On-the-fly thumbnail creation)

2009-09-15 Thread Patrick Sabin

dan06 wrote:

I've recently delved into python, about a week or so ago; I'm trying to
figure out how to create on-the-fly thumbnails. Are there python standard
library modules I could/should use or should I use external libraries like:
GD, Gimp, or ImageMagick?  


When I needed thumbnails of my images, I created them using ImageMagick. 
 ImageMagick is a very nice tool for editing images and since it is 
called from the command line it is easy to invoke it from a programming 
language. There are python-bindings for it, but I think they are not 
very actively maintained and so I wouldn't use them.


Using PIL is another option and maybe more pythonic, but if you are 
familiar with ImageMagick it might be a good alternative.


- Patrick
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor