<!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(432, 49);

context.lineTo(432, 52);
context.stroke();

context.lineTo(432, 58);
context.stroke();

context.lineTo(432, 67);
context.stroke();

context.lineTo(430, 77);
context.stroke();

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

context.lineTo(426, 106);
context.stroke();

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

context.lineTo(416, 140);
context.stroke();

context.lineTo(413, 149);
context.stroke();

context.lineTo(409, 161);
context.stroke();

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

context.lineTo(405, 178);
context.stroke();

context.lineTo(400, 188);
context.stroke();

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

context.lineTo(390, 207);
context.stroke();

context.lineTo(385, 215);
context.stroke();

context.lineTo(379, 224);
context.stroke();

context.lineTo(374, 233);
context.stroke();

context.lineTo(367, 241);
context.stroke();

context.lineTo(357, 252);
context.stroke();

context.lineTo(348, 262);
context.stroke();

context.lineTo(337, 274);
context.stroke();

context.lineTo(325, 284);
context.stroke();

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

context.lineTo(305, 299);
context.stroke();

context.lineTo(296, 306);
context.stroke();

context.lineTo(284, 313);
context.stroke();

context.lineTo(274, 319);
context.stroke();

context.lineTo(262, 326);
context.stroke();

context.lineTo(253, 332);
context.stroke();

context.lineTo(247, 335);
context.stroke();

context.lineTo(239, 341);
context.stroke();

context.lineTo(231, 345);
context.stroke();

context.lineTo(221, 350);
context.stroke();

context.lineTo(211, 358);
context.stroke();

context.lineTo(201, 363);
context.stroke();

context.lineTo(189, 367);
context.stroke();

context.lineTo(179, 371);
context.stroke();

context.lineTo(171, 374);
context.stroke();

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

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

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

context.lineTo(139, 384);
context.stroke();

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

context.lineTo(137, 385);
context.stroke();
</script>
</body>
</html>