<!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(157, 104);

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

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

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

context.lineTo(194, 185);
context.stroke();

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

context.lineTo(202, 205);
context.stroke();

context.lineTo(204, 209);
context.stroke();

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

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

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

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

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

context.lineTo(240, 138);
context.stroke();

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

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

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

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

context.lineTo(265, 174);
context.stroke();

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

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

context.lineTo(294, 237);
context.stroke();

context.lineTo(297, 243);
context.stroke();

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

context.lineTo(301, 245);
context.stroke();

context.lineTo(303, 242);
context.stroke();

context.lineTo(311, 230);
context.stroke();

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

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

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

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

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

context.lineTo(338, 194);
context.stroke();

context.lineTo(339, 195);
context.stroke();

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

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

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

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

context.lineTo(344, 196);
context.stroke();
</script>
</body>
</html>