<!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.beginPath();
context.moveTo(128, 134);

context.lineTo(129, 134);
context.stroke();

context.lineTo(129, 134);
context.stroke();

context.lineTo(132, 137);
context.stroke();

context.lineTo(141, 145);
context.stroke();

context.lineTo(162, 169);
context.stroke();

context.lineTo(173, 182);
context.stroke();

context.lineTo(214, 223);
context.stroke();

context.lineTo(238, 246);
context.stroke();

context.lineTo(267, 273);
context.stroke();

context.lineTo(287, 287);
context.stroke();

context.lineTo(316, 307);
context.stroke();

context.lineTo(330, 314);
context.stroke();

context.lineTo(340, 318);
context.stroke();

context.lineTo(354, 320);
context.stroke();

context.lineTo(368, 320);
context.stroke();

context.lineTo(382, 320);
context.stroke();

context.lineTo(395, 315);
context.stroke();

context.lineTo(407, 307);
context.stroke();

context.lineTo(420, 289);
context.stroke();

context.lineTo(424, 281);
context.stroke();

context.lineTo(429, 261);
context.stroke();

context.lineTo(429, 229);
context.stroke();

context.lineTo(429, 218);
context.stroke();

context.lineTo(421, 197);
context.stroke();

context.lineTo(414, 182);
context.stroke();

context.lineTo(407, 172);
context.stroke();

context.lineTo(396, 159);
context.stroke();

context.lineTo(388, 155);
context.stroke();

context.lineTo(377, 151);
context.stroke();

context.lineTo(369, 150);
context.stroke();

context.lineTo(362, 150);
context.stroke();

context.lineTo(352, 150);
context.stroke();

context.lineTo(347, 152);
context.stroke();

context.lineTo(343, 154);
context.stroke();

context.lineTo(336, 158);
context.stroke();

context.lineTo(331, 162);
context.stroke();

context.lineTo(329, 164);
context.stroke();

context.lineTo(328, 166);
context.stroke();

context.lineTo(327, 166);
context.stroke();

context.lineTo(327, 167);
context.stroke();

context.lineTo(327, 168);
context.stroke();

context.lineTo(327, 168);
context.stroke();

context.lineTo(328, 169);
context.stroke();

context.lineTo(329, 169);
context.stroke();

context.lineTo(329, 169);
context.stroke();
</script>
</body>
</html>