ok - then another question
context.save();
context.fillStyle = color;
context.fillRect(x1, y1, x2, y2);
context.restore();
something like that will make rectangle and fill it with color (u can play with gradients and so on here too)
but how to fill it with image in rmmv - i seen some examples how to make it in html5 using context.drawImage(img,x,y,w,h);
but i cant figure out how to make rmmv to load my image in to img here.