<!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(112, 172);

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

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

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

context.lineTo(127, 160);
context.stroke();

context.lineTo(131, 156);
context.stroke();

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

context.lineTo(143, 148);
context.stroke();

context.lineTo(148, 144);
context.stroke();

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

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

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

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

context.lineTo(186, 126);
context.stroke();

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

context.lineTo(208, 121);
context.stroke();

context.lineTo(222, 119);
context.stroke();

context.lineTo(235, 117);
context.stroke();

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

context.lineTo(257, 114);
context.stroke();

context.lineTo(270, 114);
context.stroke();

context.lineTo(283, 114);
context.stroke();

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

context.lineTo(317, 114);
context.stroke();

context.lineTo(324, 114);
context.stroke();

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

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

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

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

context.lineTo(380, 127);
context.stroke();

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

context.lineTo(397, 136);
context.stroke();

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

context.lineTo(417, 144);
context.stroke();

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

context.lineTo(435, 156);
context.stroke();

context.lineTo(441, 160);
context.stroke();

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

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

context.lineTo(452, 170);
context.stroke();

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

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

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

context.lineTo(456, 173);
context.stroke();
</script>
</body>
</html>