Moving image that was created by drawImage in canvas
问题 How just move image in canvas? There are no x\y coordinates which I can change by += or -=. 回答1: Canvas is an immedate drawing surface. When you make a call like drawImage the canvas renders the bitmap to the context and then forgets that anything ever happened. It keeps track of nothing. That means you need to keep track of everything. If you want the image you move, you need to clear the canvas and redraw the image (and everything else in the scene) at a different location than before. This