<!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(338, 91);

context.strokeStyle = '#000000';
context.strokeRect(255, 105, 70, 170);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(256, 101);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(253, 104);
context.lineTo(293, 46);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(292, 46);
context.lineTo(327, 105);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(255, 264);

context.lineTo(256, 264);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(210, 243);
context.lineTo(209, 322);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(375, 242);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(372, 236);
context.lineTo(372, 318);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(255, 274);
context.lineTo(208, 319);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(324, 271);
context.lineTo(373, 318);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(211, 242);
context.lineTo(254, 199);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(323, 193);
context.lineTo(369, 236);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(285.5, 126);
context.scale(1, 0.7692307692307693);
context.beginPath();
context.arc(0, 0, 16, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(286, 163);
context.scale(1, 0.8333333333333334);
context.beginPath();
context.arc(0, 0, 16, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>