How to flip images horizontally with HTML5

canvas = document.createElement('canvas');
canvasContext = canvas.getContext('2d');

canvasContext.translate(width, 0);
canvasContext.scale(-1, 1);
canvasContext.drawImage(image, 0, 0);

Here’s a snippet from a sprite object being used for testing and it produces the results you seem to expect.

Here’s another site with more details. http://andrew.hedges.name/widgets/dev/

Leave a Comment