So we can have for example such function to draw a line

function drawLine(g, n, x1, y1, x2, y2){
    g.beginPath();
    g.lineWidth = n > 0 ? n : 1;
    g.strokeStyle = "rgb(0, 128, 32)";
    g.moveTo(x1, y1);
    g.lineTo(x2, y2);
    g.stroke();
}

but what if we want to draw an image instead of line (resized in respect for line size, with alpha channel).

How to do such thing?

link|improve this question

Inserting an image or drawing an arbitrary image? goo.gl/hxMFc and goo.gl/xAMBj – Kai Dec 23 '10 at 19:25
Hmm ... you could draw the line on a blank canvas, get its image data, then find the line and use the coordinates to pluck out pixels from an actual image ... – Pointy Dec 23 '10 at 19:28
feedback

1 Answer

up vote 1 down vote accepted

Use the drawImage() method of the context, but first translate, rotate, and scale the context. The image will come out as a long thin line rotated as you like.

Edit: I've put a live example of this technique online, wrapping the technique up as a function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.