Android GLSurfaceView 保存位图导致异常

Android GLSurfaceView Saving bitmap causes exception

我修改了 this project,它使用 GLSurfaceView 和 Effects 来显示一个 ViewPager,其中一些效果应用于图像。

此外,我创建了一个叠加位图,在应用效果后将其覆盖在每张图像上。

至此,应用程序运行良好。但是现在我必须在按下按钮时将显示的图像保存在文件中。

所以我使用了这个代码:

 private Bitmap createBitmapFromGLSurface(int x, int y, int w, int h, GL10 gl)
            throws OutOfMemoryError {
        int bitmapBuffer[] = new int[w * h];
        int bitmapSource[] = new int[w * h];
        IntBuffer intBuffer = IntBuffer.wrap(bitmapBuffer);
        intBuffer.position(0);

        try {
            gl.glReadPixels(x, y, w, h, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, intBuffer);
            int offset1, offset2;
            for (int i = 0; i < h; i++) {
                offset1 = i * w;
                offset2 = (h - i - 1) * w;
                for (int j = 0; j < w; j++) {
                    int texturePixel = bitmapBuffer[offset1 + j];
                    int blue = (texturePixel >> 16) & 0xff;
                    int red = (texturePixel << 16) & 0x00ff0000;
                    int pixel = (texturePixel & 0xff00ff00) | red | blue;
                    bitmapSource[offset2 + j] = pixel;
                }
            }
        } catch (GLException e) {
            e.printStackTrace();
            return null;
        }

        return Bitmap.createBitmap(bitmapSource, w, h, Bitmap.Config.ARGB_8888);
    }

获取位图。按下按钮时,我调用此方法:

protected void onClick() {
        read = true;
        mEffectView.requestRender();
}

强制渲染,所以我生成位图并使用 AsyncTask 将其保存在文件中。 readonDrawFrame(GL10 gl)中用作信号量,只在我想保存时生成位图。

保存一张图片效果很好。当我保存第二个时,然后我更改页面,出现此错误:

A/Bitmap: Failed to acquire strong reference to pixels
A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 20475 (GLThread 9540)

另一个问题是叠加层虽然显示了,但没有保存在图像中。 我是这样应用的:

世代

EffectFactory effectFactory = mEffectContext.getFactory();
overlayEffect = effectFactory.createEffect(EffectFactory.EFFECT_BITMAPOVERLAY);
overlayEffect.setParameter("bitmap", overlay);

效果应用

mEffect.apply(mTextures[0], mImageWidth, mImageHeight, mTextures[1]);
overlayEffect.apply(mTextures[1], mImageWidth, mImageHeight, mTextures[2]);

使用 mEffect 是保存图像时唯一可见的效果。

我做错了什么?

编辑 我解决了最后一个问题:我发现你必须 releaserecreate 你每次使用的每个效果对象都被称为 mEffectView.requestRender().

显然,当使用

overlayEffect = effectFactory.createEffect(EffectFactory.EFFECT_BITMAPOVERLAY);
overlayEffect.setParameter("bitmap", overlay);

传递的位图被回收!

所以我解决了传递副本的问题:

overlayEffect = effectFactory.createEffect(EffectFactory.EFFECT_BITMAPOVERLAY);
overlayEffect.setParameter("bitmap", overlay.copy(overlay.getConfig(), false));

希望这对其他人有所帮助!