Can users save both their drawings and the background image after completing them?
var canvas = document.getElementById("canvas"); // This element is from the HTML
var context = canvas.getContext("2d"); // Retrieve the canvas context
canvas.style.backgroundImage = `url(${value.result.questionImage})`; // The image is fetched from a SQL database
// Users can then create drawings on the canvas...