如何在图像上添加文字?

How to add text over the image?

我正在使用 Ionic、AngularJS 和 Cordova 开发图像编辑器应用程序。

如何使用这些工具在图像上添加一些文本?

也许你可以考虑使用 z-index 方法。

你好我用下面的代码解决了这个问题

使用Canvas

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