I've made the bottom layer transparent and tried the following code.
I can see the image appears briefly but then disappears.
So, is it possible to load an image into and change the c2canvas background through javascript?
var canvas = document.getElementById('c2canvas'),
context = canvas.getContext('2d');
make_base();
function make_base()
{
base_image = new Image();
base_image.src = 'icon-256.png';
base_image.onload = function(){
context.drawImage(base_image, 100, 100);
}
}
[/code:3uranuhu]