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

[REBOL] Blind resizing

From: patrick:philipot:laposte at: 9-Oct-2003 19:25

Hi List, To create image thumbnails, I am using View and a box with the desired size (for example the picture is 1024x780 and the box is 128x96). mybox/image: load mypicture The resizing is implicit. To actually create the thumbnail, I use save/png %small-pic.png to-image mybox This works but is it possible to do the same just in memory? Something like mypict: load-image mypicture mypict/size: 128x96 save/png ... Regards Patrick