Jump to content

Angular Js Directive Canvas


jbwebdesign

Recommended Posts

Hello, I am working on creating an angular js directive for using HTML5 Canvas

 

My goal is to output a canvas and use Font Awesome icons for writing inside of the canvas.

 

My code is the following, however the problem i have is that the font awesome icons don't seem to render: 
 

angular.module('myApp')
.directive('customButtonCanvas', ['$document', function($document) {
  return {
    restrict: 'A',
    scope: {
      width : '=',
      height : '=',
      options : '='
    },
    link: function(scope, element){
      console.log(scope);
      console.log(element);
      //first lets get the canvas element from our template....
      var ctx = element[0].getContext('2d');
      ctx.font = "40px FontAwesome";
      ctx.fillText("\uf000", 120, 120);
      console.log(ctx);

    }
  };

}]);

any help with this will be greatly appreciated.

 

thanks!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...