I'm working on a little project using a canvas, Simply put it puts text ontop of an image.
There is a slider to change the position and size, But nothing for rotating the text.
I've searched around on stackoverflow looking for a way to rotate the text without the background image being effected, But nothing has helped yet.
I know about
context.rotate( Math.PI / 2 );
context.translate( canvas.width / 2, canvas.height / 2 );
But this seems to be rotating the whole thing, Background included.
Can someone point me in the right direction?
Link to the pen: