是否可以绘制一个由 4 个点组成的形状,并在该形状中填充图像?
我在 2d 空间(p1、p2、p3、p4)中有一些点,我想使用它们绘制一个形状,但也想用图像文件(png)填充这个形状。我不会有任何边框,只有图像本身完全填充形状的尺寸。
我必须每秒绘制 1000 次形状,所以任何更快的速度都会很酷,但形状本身是 50x50 像素,所以不是很大。
有什么想法吗?
I have for points in 2d space (p1, p2, p3, p4) where I want to draw a shape using them, but also want to fill inside this shape with an Image file (png). I won't have any borders, just the Image itself filling the dimensions of the shape fully.
I will have to draw the shapes 1000s of times a second so anything that's faster would be cool, but the shapes themselves are 50x50 pixels, so not very big.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ImageBrush 填充任何矩形,它会使用您的积分。您只需设置 Rectangle.Fill 给你的画笔属性。
此处对此进行了更多讨论。
You can use an ImageBrush to fill any Rectangle, which uses your points. You just need to set the Rectangle.Fill property to your brush.
This is discussed more here.
您可以在图像上放置一个遮罩来遮挡形状之外的所有区域吗?我假设你的意思不是用图像平铺形状。
Could you lay a mask over the image that would block all area outside your shape? I'm assuming you don't mean tiling the shape with the image.