从位图中获取特定的两个像素进行处理

时间:2016-03-27 06:36:50

标签: android bitmap android-bitmap

我有一张图片,我想特别处理像素号159和160。我正在运行此代码,但它给了我ArrayIndexOutOfBoundsException。我认为我已经宣布该数组是问题的方式。

int[] twoPositions = {159, 160};
bitmap.GetgetPixels(twoPositions, 0, width, 0, 0, width, height); //exception line (ArrayIndex....)

如何以一种给出0行,第159和第160列像素的方式声明数组? 提前谢谢你......

0 个答案:

没有答案