**已关闭。**此问题需要debugging details。目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
2天前关闭。
Improve this question的
我想得到一个画布上的图像和它的x,y,因为它是画在画布上的随机位置每隔一定的时间。我有图像源,我不知道它是否可以帮助谢谢
我试过使用drawImage函数,但我实际上并不熟悉它,这对我来说真的很难
let ordrawimage = CanvasRenderingContext2D.prototype. drawImage;
CanvasRenderingContext2D.prototype.drawImage=function newDrawImage(image, sourceX, sourceY, sourceWidth, sourceHeight, targetX, targetY, targetWidth, targetHeight){
if (this.canvas.id === 'canvas') {
if ((image.src == 'https://agma.io/skins/objects/9_lo.png?v=2' || image.src == 'https://agma.io/skins/objects/9.png?v=2')) {
alert('coins detected');
}
}
ordrawimage.apply(this,arguments)
}
字符串
1条答案
按热度按时间v1uwarro1#
我建议你检查this tutorial。基本上,你可以添加一个像这样的图像:
个字符
希望这对你有帮助!