Сообщение от super-html
|
Ошибка почему-то на 16 строке.
|
Сообщение от Nexus
|
Переменная "context" не определена.
|
Переменная image так и осталась без "var".
Попробуйте так:
var image = document.createElement('img'),
context = document.getElementById('test').getContext('2d');
image.onload = function() {
context.fillStyle = context.createPattern(image, 'repeat');
context.fillText('WickerpediA', 0, 0);
context.strokeText('WickerpediA', 0, 0);
};
image.src = '1.jpg';