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?
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);
};