从图像映射中抓取图像

时间:2014-07-02 18:15:12

标签: android

我只是想知道如何从图像地图中获取图像,就像在1.2.5中的图片地图一样。

图片地图:

enter image description here

因为你可以看到图像地图中有很多图像...我想要的是从图像地图中获取16x16px并将其用作我正在做的绘图。

希望我能够很好地解释这一点。对不起英语和其他东西,我真的不知道它叫什么。

1 个答案:

答案 0 :(得分:1)

使用Bitmap.createBitmap()方法。您可以指定要提取的像素数和起点。因此,只需循环原始位图,为下一个起始坐标添加16px。

链接:http://developer.android.com/reference/android/graphics/Bitmap.html#createBitmap(android.graphics.Bitmap,int,int,int,int)