将位图存储在整数数组中

时间:2011-06-21 22:16:36

标签: java android image-processing bitmap

这样做的最佳方法是什么。我有一个高度*宽度的数组长度。我只是根据循环索引循环通过位图设置每个像素到数组?感谢

[更新] 这是一个在位图上放置鱼眼失真的应用程序。我试图将像素数据存储在与调用Bitmap.setPixel()相对应的数组中,因为这会带来巨大的GC开销

 for (int j=0;j<dst.getHeight();j++) {
        for (int i=0;i<dst.getWidth();i++) {
            origPixel= input.getPixel(i,j);
            getRadXStart = System.currentTimeMillis();
            float x = getRadialX((float)j,(float)i,centerX,centerY,k);
            float y = getRadialY((float)j,(float)i,centerX,centerY,k);
            sampleImage(input,x,y);

            color = ((s[1]&0x0ff)<<16)|((s[2]&0x0ff)<<8)|(s[3]&0x0ff);
        //  System.out.print(i+" "+j+" \\");

            //if( Math.sqrt( Math.pow(i - centerX, 2) + ( Math.pow(j - centerY, 2) ) ) <= 150 ){
            if (Math.pow(i - centerX, 2) + ( Math.pow(j - centerY, 2) ) <= 22500 ) {
                // dst.setPixel(i, j, color);
                arr[i]=color;
            } else {
                //dst.setPixel(i,j,origPixel);
                arr[i]=origPixel;
            }
        }
    }

Bitmap dst2 = Bitmap.createBitmap(arr,width,height,input.getConfig());
        return dst2;

2 个答案:

答案 0 :(得分:0)

您是否尝试过getPixels(...) on Bitmap方法?

答案 1 :(得分:0)

要填充它,您必须循环通过位图来设置每个像素。也就是说,我不知道你是否会看到主要的性能提升。