0

我编写了用于使用 MediaProjection 类捕获图像的测试应用程序。

imageReader = ImageReader.newInstance(currentWidth, currentHeight, PixelFormat.RGBA_8888, 2);
imageReader.setOnImageAvailableListener(this, null);

virtualDisplay = mediaProjection.createVirtualDisplay("captureDisplay",
                    currentWidth, currentHeight,  DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY |
                            DisplayManager.VIRTUAL_DISPLAY_FLAG_PUBLIC| 
                            DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR |
                            DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE |
                          DisplayManager.VIRTUAL_DISPLAY_FLAG_PRESENTATION, Screen.getDensity(mContext),                          imageReader.getSurface(), null, null);

// DisplayManager 标志只是轨迹

并在onImageAvailable(ImageReader reader)方法中

我试图得到如下图像:

Bitmap bitmap;

Image mImage = null;

try {

mImage = mImageReader .acquireLatestImage();

if (img != null) {

    final Image.Plane[] planes = mImage.getPlanes();

    final ByteBuffer buffer = planes[0].getBuffer();

    int pixelStride = planes[0].getPixelStride();

    int rowStride = planes[0].getRowStride();

    int rowPadding = rowStride - pixelStride * mImage.getWidth();

    bitmap = Bitmap.createBitmap(mImage.getWidth() + rowPadding/pixelStride, mImage.getHeight(), Bitmap.Config.ARGB_8888);  

    bitmap.copyPixelsFromBuffer(buffer);

    ByteArrayOutputStream stream = new ByteArrayOutputStream();

    bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);

   byte[] rawData = lastImageAcquiredRaw = stream.toByteArray();

   if (rawData != null) {

    Bitmap fullScreen = BitmapFactory.decodeByteArray(rawData, 0, rawData.length);

    savebitmap(fullScreen,"image",i); //Saving bitmap in storage

    }

}

直到现在我还好,当我的应用程序处于横向时我得到了正确的图像。面临的问题是方向变化,我没有得到正确的图像。有时再次变回风景也没有正确捕捉。

我经历了 ImageReader.java 类。没有提到需要处理方向变化。

尝试使用 acquireNextImageNoThrowISE()、acquireNextImage() 但没有用。

是否有人尝试或有可能获得正确的图像方向?

请帮助我获得正确的图像。

4

1 回答 1

1

我知道这篇文章有点老了,但最近几天我被同样的事情扼杀了。我也在使用 MediaProjection API、VirtualDisplay 和 ImageReader 的表面。我要演示的解决方案不是 100% 完全证明的,所以如果有人有任何有用的建议,我们非常欢迎。

第一步:OrientationChangeCallback创建虚拟显示器后添加

OrientationChangeCallback orientationChangeCallback = new OrientationChangeCallback(context);
if (orientationChangeCallback.canDetectOrientation()) {
  orientationChangeCallback.enable();
}

第二步:定义方向回调,本质上是重新开始捕获

private class OrientationChangeCallback extends OrientationEventListener {
        OrientationChangeCallback(Context context) {
            super(context);
        }

        @Override
        public void onOrientationChanged(int orientation) {
            final int rotation = mDisplay.getRotation();
            if(rotation != mRotation) {
                mRotation = rotation;
                if (mVirtualDisplay != null) {
                    mVirtualDisplay.release();
                }
                if (mImageReader != null) {
                    mImageReader.setOnImageAvailableListener(null, null);
                }
                if (!mProjectionStopped) {
                    createVirtualDisplay();
                }
            }
        }
    }

请注意,我持有对 ImageReader 和 VirtualDisplay 的引用,并且还要volatile boolean mRotation检查屏幕是否实际旋转。

我遇到的问题是,在某些设备(包括 Nexus 5X)上,图像在 X 次或旋转(通常 10-20 次)后可能会损坏。如果我再旋转一次设备,图像就会被正确捕获。在快速设备(Google Pixel)上,我无法复制损坏的图像问题,所以我猜这可能是同步问题。

于 2017-04-07T16:58:40.937 回答