1. NodeBox 1
    1. Homepage
    2. NodeBox 3Node-based app for generative design and data visualization
    3. NodeBox OpenGLHardware-accelerated cross-platform graphics library
    4. NodeBox 1Generate 2D visuals using Python code (Mac OS X only)
  2. Gallery
  3. Documentation
  4. Forum
  5. Blog

Re: Mac Background in Nodebox

Posted by Rob M. on Nov 19, 2008



Tom:

. Thanks for the advise, works great...
here is my first image
with just a small tweak in the code you provided.

. I will keep working with the code - but is
is just what I was looking for.

size(700, 500)
 
web = ximport("web")
img = web.flickr.search("crab nebula star")[1]
img = img.download()
 
coreimage = ximport("coreimage")
canvas = coreimage.canvas(WIDTH, HEIGHT)
l = canvas.layer(img)  
l = l.duplicate()
l.filter("zoomblur", amount=20)
l.mask.radial()
canvas.draw()