从android中的大位图获取小位图图像
任何人都可以知道如何从由许多位图组合而成的大位图中获取小位图图像。
Can anybody have any idea about how to get a small bitmap image from a big bitmap which is the combination of many bitmaps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个小位图。
使用该位图创建画布。
将一个矩形从原始位图粘贴到新位图中。
是的,这很烦人;不,你不能跳过毫无意义的画布步骤,这就是它在这里的工作原理。
Create a small bitmap.
Create a canvas using that bitmap.
Paste a Rect from the original bitmap to the new one.
Yes, this is annoying; no, you can't skip the pointless canvas step, that's how it works here.