Set text align on the HTML5 canvas
Example of how you can set the text align on the HTML5 canvas.
<!DOCTYPE HTML>
<html>
<head>
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<canvas id="myCanvas" width="600" height="300"></canvas>
<script>
var canvas = document.getElementById('myCanvas');
var ctx = canvas.getContext('2d');
ctx.font = '70pt Arial Black';
ctx.fillText('Hello Tizen', 150, 100);
ctx.textAlign = 'center';
</script>
</body>
</html>