在处理中的图像周围移动
是否可以在不清除整个背景的情况下移动图像(或图像对象)?
我希望创建一个允许用户使用鼠标以外的设备“绘画”的应用程序。我希望有一个光标来跟随用户使用输入设备的移动,而不必清除已经绘制的图片。
这可能吗?又如何呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在不清除整个背景的情况下移动图像(或图像对象)?
我希望创建一个允许用户使用鼠标以外的设备“绘画”的应用程序。我希望有一个光标来跟随用户使用输入设备的移动,而不必清除已经绘制的图片。
这可能吗?又如何呢?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这取决于你如何处理绘画。
我建议使用 PImage 作为画布进行绘制,并使用另一个 PImage 来存储画笔的像素。 “画笔”可以是加载的图像,或者在草图开始时,您可以使用绘图命令制作画笔,然后使用 get().
您将需要清除所有内容,因为您想要绘制光标,但您也将绘制画布,并且仅当按下鼠标(或某些设备特定方法)时,您才会使用 copy() 或 blend() 函数(取决于您的画笔 PNG - 有或没有透明度等)
下面是一个快速草图来说明这一点:
请注意,您需要将图像放入草图的数据文件夹中。
您可以在此处尝试:
您可以运行以下 javascript 版本:
It depends how you handle drawing.
I would suggest using PImage as a canvas to draw into and another PImage to store the pixels of your brush. The 'brush' can be a loaded image, or at the start of your sketch you could make the brush using drawing commands, then store those as a PImage using get().
You will need to clear everything because you want to draw your cursor, but you will also draw your canvas, and you'll store 'brush strokes' only when the mouse is pressed (or some device specific method) by using the copy() or the blend() function (depending on your brush PNG - with or without transparency, etc.)
Here's a quick sketch to illustrate this:
Note that you need an image into your sketch's data folder.
You can try it here:
You can run a javascript version bellow: