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

[REBOL] Re: image resizing

From: volker::nitsch::gmail::com at: 8-Jun-2006 10:25

On 6/8/06, Volker Nitsch <volker.nitsch-gmail.com> wrote:
> On 6/8/06, sags-apollo.lv <sags-apollo.lv> wrote: > > > > Thanks, Volker! > > > > I already noted in some examples and scripts this notation: > > > > command/function variable: value > > > > I never used it so it is a bit confusing for me. > > Are there any a little bit detailed information about this way? > > When it can/should be used what kind of functions can do that? > > > > its a shortcut. > save/png bin: #{} to-image layout[size 5x5] > is the same as > bin: #{} > save/png #{} to-image layout[size 5x5]
Typo.. Should be save/png bin to-image layout[size 5x5] and never forget the copy, so bin: copy #{} save/png bin to-image layout[size 5x5] [snip] -- -Volker Any problem in computer science can be solved with another layer of indirection. But that usually will create another problem. David Wheeler