Jump to content
  • 0

Заливка Canvas


<!DOCTYPE html>
 Share

Question

Всем привет. Интересует следующее:

Обычный div можно залить картинкой, что бы она множилась, растягивалась и т.д., а есть ли такая же штука для canvas. Т.е. есть, например треугольник, нарисованный в canvas, как его можно залить изображением? И как указать заливку, слева направо, сверху в низ и т.д.?

Уточню еще для полной ясности. Залить надо не сам canvas, а нарисованную в нем фигуру.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Спасибо, разобрался, кому интересно код залитого квадратика ниже:

    <script type="application/x-javascript">
function draw() {
var ctx = document.getElementById('canvas').getContext('2d');
// create new image object to use as pattern
var img = new Image();
img.src = 'images/bg.png';
img.onload = function(){
// create pattern
var ptrn = ctx.createPattern(img,'repeat');
ctx.fillStyle = ptrn;
ctx.fillRect(0,0,150,150);
}
}
</script>
</head>
<body onload="draw();">
<canvas id="canvas"></canvas>
</body>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy