<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Your Canvas</title>

<style type="text/css"><!--
#container { position: relative; }
#imageTemp { position: absolute; top: 1px; left: 1px; }
--></style>

</head>
<body>
<canvas id="imageView" width="600" height="500"></canvas>

<script type="text/javascript">
var canvas, context, canvaso, contexto;
canvaso = document.getElementById('imageView');
context = canvaso.getContext('2d');
context.lineWidth = 5;

context.strokeStyle = '#000000';
context.strokeRect(89, 92, 156, 98);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(89, 189);
context.lineTo(73, 262);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(244, 188);
context.lineTo(257, 257);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(74, 259);
context.lineTo(261, 260);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(146, 237, 43, 14);

context.strokeStyle = '#000000';
context.strokeRect(104, 111, 123, 62);

context.strokeStyle = '#000000';
context.strokeRect(95, 198, 142, 27);

context.strokeStyle = '#000000';
context.strokeRect(278, 93, 83, 166);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(330, 246);

context.strokeStyle = '#000000';
context.save();
context.translate(318, 247);
context.scale(1, 0.42857142857142855);
context.beginPath();
context.arc(0, 0, 15, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.strokeRect(287, 102, 65, 134);

context.strokeStyle = '#000000';
context.strokeRect(405, 83, 136, 179);

context.strokeStyle = '#000000';
context.strokeRect(456, 242, 39, 14);

context.strokeStyle = '#000000';
context.strokeRect(415, 93, 115, 140);
</script>
</body>
</html>