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?