<!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.save();
context.translate(267, 202.5);
context.scale(1, 0.6714285714285714);
context.beginPath();
context.arc(0, 0, 84, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.strokeRect(383, 298, 48, 24);

context.strokeStyle = '#000000';
context.strokeRect(175, 336, 72, 20);

context.strokeStyle = '#000000';
context.strokeRect(114, 72, 133, 140);

context.strokeStyle = '#000000';
context.strokeRect(425, 149, 39, 26);

context.strokeStyle = '#000000';
context.strokeRect(398, 413, 100, 7);

context.strokeStyle = '#000000';
context.strokeRect(73, 218, 238, 108);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(65, 112);

context.lineTo(65, 112);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(196, 398);

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(224, 403);

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(295, 407);

context.lineTo(295, 407);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(316, 350);

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

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(316, 409);
context.lineTo(124, 418);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(432, 211);
context.lineTo(185, 104);
context.stroke();
context.closePath();
</script>
</body>
</html>