Draw text : Canvas Draw « Dojo toolkit « JavaScript DHTML






Draw text

 

<html>
  <head>
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/",
        parseOnLoad : true
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <script>
      dojo.require("dojox.gfx");
      function testIt() {
        var s = dojox.gfx.createSurface("my", 320, 240);
        var txt = s.createText({x: 90, y: 130, text: "Text"});
        txt.setFont({family : "Times", size : "20pt", weight : "bold"});
      
        txt.setStroke("black");
      }
    </script>
  </head>
  <body onLoad="testIt();">
        <div id="my"></div>
  </body>
</html>
       

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.Draw 3D ball
2.Draw line
3.Draw polygon
4.Draw rectangle
5.Draw stroke
6.Fill text
7.Shape rotation
8.Create Ellipse