Search code examples
angularjscordovaionic-frameworkngcordova

How to add text over the image?


I am developing an image editor application using Ionic, AngularJS, and Cordova.

How do I use these tools to add some text over an image?


Solution

  • Hi I solved this problem with following code

    Using Canvas

    var bb = function(){
         context.drawImage(imageurl, 10, 10);
         context.font = "40pt Calibri";
         context.fillText("This is the text added", 20, 20);
     };