Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: image manipulation w/View?

From: larry:ecotope at: 24-May-2001 11:50

Hi John You can use any of the image effects available in View to create a new image. Here is an example using the rotate effect: im: load %my-pic.jpg ; can read PNG BMP JPG GIF new-im: to-image layout [origin 0x0 image im effect [rotate 90]] save/png %my-new-pic.png new-im ; can write PNG BMP -Larry