/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk
1
2
3
4
5
6
7
8
9
10
11
<?php

header("Content-type: image/png");

$req = new REQUEST();
$w = $req->CreateImageHelper();
$w->Create();
$id = $w->Save();
$w->Display($id);

?>