HOLY COW AND HOLY DEER! I know what I have to do. Simple lol, I will use Canvas to write. I put a textbox, give the value a variable, then put the variable in canvas and write like a BOSS.
Example:
Code:
<canvas id="canvas" width="200" height="200"></canvas>
<input type="text" size="25" id="lol"/>
<input type="button" value="write" onClick="writethecrap();"/>
Code:
<script>
function writethecrap () {
var canvas = document.getElementById('canvas');
var context = canvas.getContext('2d');
var loltext = document.getElementById("lol").value;
context.fillText(loltext, 20, 10);
}
</script>
Good?