在 Android 中将画布绘图保存在图像上
我正在开发一个应用程序,其中有一个自定义 ImageView。使用自定义图像视图,我可以在其上拖动、缩放和粘贴文本(使用其 onDraw() 函数)。现在,最后我想将所有画布绘制在图像上,并将其保存在文件系统中。我尝试过 imageView.getDrawingCache() 方法,但它不能满足我的要求,因为当我缩小它时,它也会捕获图像的黑色侧面。有什么建议吗?
I'm working on an application in which I'v a custom ImageView. Using custom imageview I can drag,zoom, and paste text over over it (using its onDraw() function). Now at the end I want to put all the canvas drawing over image and want to save it in the file system. I have tried imageView.getDrawingCache() method but it does not fulfill my requirements as when I zoom out the it captures black sides of the image too. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在,存储在位图中的图像已在其上绘制了内容。
Now your image stored in Bitmap has drawn stuff on top of it.