aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/gfx/tests/test_image2.html
blob: 25f71c004f5186b0d9dd6464c0bdd278b579cde0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" >
<head>
<title>Testing image</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!--
The next line should include Microsoft's Silverligth.js, if you plan to use the silverlight backend
<script type="text/javascript" src="Silverlight.js"></script>
-->
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true"></script>
<!--<script type="text/javascript" src="../vml.js"></script>-->
<!--<script type="text/javascript" src="../svg.js"></script>-->
<!--<script type="text/javascript" src="../silverlight.js"></script>-->
<script type="text/javascript">
dojo.require("dojox.gfx");

var grid_size = 500, grid_step = 50;
var main = null, g = null, image = null, rect = null;

makeShapes = function(){
	var s = dojox.gfx.createSurface("test", 800, 600);
	for(var i = 0; i <= grid_size; i += grid_step){
		s.createLine({x1: 0, x2: grid_size, y1: i, y2: i}).setStroke("black");
		s.createLine({y1: 0, y2: grid_size, x1: i, x2: i}).setStroke("black");
	}

	main = s.createGroup();
	//rect = main.createRect({x: 0, y: 0, width: 100, height: 100}).setStroke("black").setFill(new dojo.Color([255, 0, 255, 0.5]));
    image = main.createImage({width: 157, height: 53, src: "http://archive.dojotoolkit.org/nightly/checkout/util/resources/dojotoolkit.org/mini-dtk/images/logo.png"});
	// comment out the next string to see the problem
	rect = main.createRect({x: 0, y: 0, width: 100, height: 100}).setStroke("black").setFill(new dojo.Color([255, 0, 255, 0.5]));
	//g = main.createGroup();
	//g.createRect({x: 0, y: 0, width: 100, height: 100}).setStroke("black").setFill(new dojo.Color([255, 255, 0, 0.5]));
};

trans = function(){
	var x = 1;
	main.setTransform([dojox.gfx.matrix.rotategAt(45, 200, 200), {dx: 200, dy: 200}]);
};

dojo.addOnLoad(makeShapes);

</script>
</head>
<body>
<p>Testing image:<br /><button onclick="trans();">Trans</button></p>
<p>Note: Silverlight doesn't allow downloading images when run from a file system. This demo should be run from a server.</p>
<div id="test"></div>
<p>That's all Folks!</p>
</body>
</html>