<!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(129, 134);
context.lineTo(434, 261);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(336, 320);
context.lineTo(200, 344);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(122, 288);
context.lineTo(319, 266);
context.stroke();
context.closePath();

context.lineWidth = 6;

context.lineWidth = 7;

context.lineWidth = 8;

context.lineWidth = 9;

context.lineWidth = 10;

context.lineWidth = 11;

context.lineWidth = 12;

context.lineWidth = 13;

context.lineWidth = 12;

context.lineWidth = 11;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(472, 211);
context.lineTo(228, 319);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(158, 284);
context.lineTo(175, 209);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(234, 134);
context.lineTo(267, 113);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(312, 116);
context.lineTo(396, 167);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(415, 190);
context.lineTo(414, 245);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(418, 292);
context.lineTo(426, 326);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(476, 356);
context.lineTo(508, 316);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(97, 75, 178, 96);

context.strokeStyle = '#000000';
context.strokeRect(306, 256, 175, 163);

context.strokeStyle = '#000000';
context.strokeRect(363, 131, 167, 34);

context.strokeStyle = '#000000';
context.strokeRect(372, 62, 169, 28);

context.strokeStyle = '#000000';
context.save();
context.translate(344, 74.5);
context.scale(1, 0.7285714285714285);
context.beginPath();
context.arc(0, 0, 87, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>