function zoom() {
switch(this.id) {
case "zoom_in":
scale /= scaleMultiplier;
img_update(scale);
break;
case "zoom_out":
scale *= scaleMultiplier;
img_update(scale);
break;
}
}
function img_update( scale ) {
redoArray.length = 0;
flag = 0;
contextUI.scale(scale, scale);
contextUI.transform(scale, scale);
contextUI.drawImage(canvas, 0, 0);
context.clearRect(0, 0, w, h);
}
Here I'm using the zoom() function when a user clicks on the zoom_in, zoom_out buttons. The img_update() function is used to redraw the canvas element. Now zoom works only after I'm painting on the canvas, but I'd like to see zoom effect immediately after the user clicks on the zoom buttons. How can I fix this?