<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Canvas в HTML5</title>
</head>
<body>
<canvas id='test' width='1250px' height='600px'></canvas>
<script>
image = new Image()
var image = document.createElement('img'),
context = document.getElementById('test').getContext('2d');
image.onload = function() {
context.fillStyle = context.createPattern(image, 'repeat');
context.font = '200px Verdana'
context.fillText('WickerpediA', 0, 300);
context.strokeText('WickerpediA', 0, 300);
};
image.src = '1.jpg';
</script>
</body>
</html> |