![]() |
|
|
+ Search |
![]()
|
Feb 21st, 2001 04:24
Mixo Shiburi,
If you have Python, get a the Python(ware) Image Library(PIL). After
installing is you should be able to manipulate images (jpg,ppm,etc).
For example, to rotate type in
import Image
im= Image.open("youfilehere") #open a the file
im2=im.rotate(45) #where 45 is a an angle
im2.show() #shows the image
im2.save("filename") #saves the image
You can get PIL from http://www.pythonware.com