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

Getting size of an image in a series

 [1/3] from: jamesh:Volition-inc at: 2-Nov-2004 8:14


I have a series called "images," which contains images. I can get the size of the first image in the series like this: temp: first images image-size: temp/size But can this be done without the temporary? ("REBOL/View 1.2.55.3.1 18-Oct-2004 Core 2.6.0," if it matters.) James

 [2/3] from: gabriele:colellachiara at: 2-Nov-2004 15:23


Hi James, On Tuesday, November 2, 2004, 3:14:24 PM, you wrote: JH> temp: first images JH> image-size: temp/size JH> But can this be done without the temporary? ("REBOL/View 1.2.55.3.1 JH> 18-Oct-2004 Core 2.6.0," if it matters.) image-size: images/1/size Regards, Gabriele. -- Gabriele Santilli <[g--santilli--tiscalinet--it]> -- REBOL Programmer Amiga Group Italia sez. L'Aquila --- SOON: http://www.rebol.it/

 [3/3] from: jamesh::Volition-inc::com at: 2-Nov-2004 8:24


> image-size: images/1/size
Ah, so obvious in retrospect, yet it had eluded me for days. Thanks, Gabriele! James