获取画布的一部分
我怎样才能只得到画布的绘制部分。我希望用户在屏幕上绘图,但仅显示视图的绘制部分。有什么方法可以做到这一点吗?
How can i get only the drawn part of a canvas. I want the user to draw on the screen , but display only the drawn part of the view.Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Canvas 用于在位图上绘图。您可以启用缓存并使用命令 buildDrawingCache,这将返回画布使用的位图。这将绘制部分,其余部分将是透明的。
Canvas is used to draw on bitmaps. You can enable the cache and use the command buildDrawingCache and this will return the bitmap the canvas uses. This will the draw parts and the rest will be transparent.