Mercurial > MadButterfly
view nodejs/testimage.js @ 870:512204bcafba
Export the function to create a runtime for an existed window for X.
For some application, we need to create and associate a runtime with
an existed window, and free it the runtime without close the window,
later.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Fri, 24 Sep 2010 11:19:53 +0800 |
parents | fc035abcf82a |
children |
line wrap: on
line source
// -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 4; -*- // vim: sw=4:ts=8:sts=4 var svg = require("./svg"); var mbapp = require("./mbapp"); var sys=require("sys"); var animate=require("./animate"); var fs = require("fs"); app = new mbapp.app(); coord = app.mb_rt.coord_new(app.mb_rt.root); data=mbapp.ldr.load("sample.png"); paint = app.mb_rt.paint_image_new(data); img = app.mb_rt.image_new(10,10,50,50); paint.fill(img); coord.opacity = 0.9; coord.add_shape(img); app.loop();