我发现我不能用HTML做到这一点(在图片中添加文字),我找到了一种使用JAVA的方法,但我很有兴趣通过使用Javascript找到一种方法。
答案 0 :(得分:4)
你可以使用canvas,
来做到这一点<canvas id="canvas" width="340" height="340"></canvas>
脚本,
function addTextToImage(imagePath, text) {
var circle_canvas = document.getElementById("canvas");
var context = circle_canvas.getContext("2d");
// Draw Image function
var img = new Image();
img.src = imagePath;
img.onload = function () {
context.drawImage(img, 0, 0);
context.lineWidth = 1;
context.fillStyle = "#CC00FF";
context.lineStyle = "#ffff00";
context.font = "18px sans-serif";
context.fillText(text, 50, 50);
};
}
addTextToImage("http://www.gravatar.com/avatar/0c7c99dec43bb0062494520e57f0b9ae?s=256&d=identicon&r=PG", "Your text");