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

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

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

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

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

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

context.lineTo(271, 176);
context.stroke();

context.lineTo(259, 177);
context.stroke();

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

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

context.lineTo(217, 181);
context.stroke();

context.lineTo(212, 183);
context.stroke();

context.lineTo(210, 184);
context.stroke();

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

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

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

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

context.lineTo(213, 190);
context.stroke();

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

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

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

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

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

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

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

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

context.lineTo(304, 190);
context.stroke();

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

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

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

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

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

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

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

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

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

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

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

context.lineTo(352, 165);
context.stroke();
</script>
</body>
</html>