The development environment:
PhoneGap on Android System.
I have two canvas:
drawing_plate = document.getElementById( 'drawing_plate' );
context = drawing_plate.getContext('2d');
help_drawing_canvas_ = document.getElementById('help_drawing_plate');
help_drawing_canvas = help_drawing_canvas_.getContext('2d');
I need to repaint the "drawing_plate" and then copy the drawings of help_drawing_canvas_ onto it, and drawing some image icons on it.
help_drawing_canvas_ = document.getElementById('help_drawing_plate');
help_drawing_canvas = help_drawing_canvas_.getContext('2d');
help_drawing_canvas.fillStyle="#FFFFFF";
help_drawing_canvas.fillRect( 0,0 , help_drawing_plate.width , help_drawing_plate.height );
drawings.onload= function(){
help_drawing_canvas.drawImage(drawings, 0, 0);
}
drawings.src= drawing_plate.toDataURL("image/png");
The above part is to copy the help_drawing_canvas content to drawings.
And then the images:
for(var i=0; i < stamp_arr_for_current_page.length; i++)
{
stamp_img.src= stamp_arr_for_current_page[i].src;
help_drawing_canvas.drawImage(stamp_img, stamp_arr_for_current_page[i].pos_x, stamp_arr_for_current_page[i].pos_y);
}
stamp_arr_for_current_page is an array storing stamp_img objects ** and the src is the **image src.
Here is the problem:
The help_drawing_canvas_ canvas only show the drawings content from drawing_plate or the stamp image. They just can't appear synchronously so that I can only view the content which I draw on the drawing_plate or the
image icons.
It's weird, I call drawImage to draw the drawing_plate content first then the image icons. Why the icons won't show up?
Help, please...