Да, просто поставьте прямоугольник без альфа:)
var context = document.getElementById("id of your canvas").getContext("2d");
context.fillStyle = "rgba(0, 0, 0, 1)"; // (red, green, blue, alpha from 0 to 255);
// or just
context.fillStyle = "rgb(0, 0, 0)"; // without alpha
context.fillRect(0, 0, your_canvas_width, your_canvas_height);