Re: Graphics files Python

2005-07-30 Thread Pekka Karjalainen
In article [EMAIL PROTECTED], Terry Reedy wrote: Besides the other responses, you might also check out the pygame site where there once were some tutorial examples of manipulating bitmaps with Numerical Python to get various effects. I'll keep this in mind too. Thanks to both for helpful

Graphics files Python

2005-07-28 Thread Pekka Karjalainen
How can I create image files and animations with Python? I will clarify a bit. This is a question of recreational programming. I have already made some animated gifs from Julia sets using Python and some external programs. I hit upon a quick solution of writing ppm image files (it's a

Re: Graphics files Python

2005-07-28 Thread Thomas Guettler
Am Thu, 28 Jul 2005 10:40:05 + schrieb Pekka Karjalainen: How can I create image files and animations with Python? You can create image files with PIL: http://www.pythonware.com/products/pil/ I don't know if you can make animated gifs. You can use ImageMagick, too:

Re: Graphics files Python

2005-07-28 Thread Terry Reedy
Pekka Karjalainen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] How can I create image files and animations with Python? Besides the other responses, you might also check out the pygame site where there once were some tutorial examples of manipulating bitmaps with Numerical