2

我正在尝试使用 MediaProjection API 和 ImageReader 来捕获模拟器屏幕。但它总是产生黑屏。代码如下。

@Override
public void onImageAvailable(ImageReader reader) {

    Log.i(TAG, "in OnImageAvailable");

    FileOutputStream fos = null;
    Bitmap bitmap = null;
    Image img = null;

    try {

        img = reader.acquireLatestImage();

        if (img != null) {

            Image.Plane[] planes = img.getPlanes();

            if (planes[0].getBuffer() == null) {
                return;
            }

            int width = img.getWidth();
            int height = img.getHeight();
            int pixelStride = planes[0].getPixelStride();
            int rowStride = planes[0].getRowStride();
            int rowPadding = rowStride - pixelStride * width;

            Log.v(TAG, "width: "+width+", height: "+height+", pixelStride: "+pixelStride+", rowStride: "+rowStride+", rowPadding: "+rowPadding);

            int offset = 0;
            bitmap = Bitmap.createBitmap(metrics, width, height, Bitmap.Config.ARGB_8888);
            ByteBuffer buffer = planes[0].getBuffer();

            for (int i = 0; i < height; ++i) {
                for (int j = 0; j < width; ++j) {
                    int pixel = 0;
                    pixel |= (buffer.get(offset) & 0xff) << 16;     // R
                    pixel |= (buffer.get(offset + 1) & 0xff) << 8;  // G
                    pixel |= (buffer.get(offset + 2) & 0xff);       // B
                    pixel |= (buffer.get(offset + 3) & 0xff) << 24; // A
                    bitmap.setPixel(j, i, pixel);
                    offset += pixelStride;
                }
                offset += rowPadding;
            }

            String name = "/pyscreen" + count + ".png";
            count++;
            File file = new File(Environment.getExternalStorageDirectory(), name);
            fos = new FileOutputStream(file);
            bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
            Log.i(TAG, "image saved in" + Environment.getExternalStorageDirectory() + name);
            img.close();
        }

    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        if (null != fos) {
            try {
                fos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        if (null != bitmap) {
            bitmap.recycle();
        }
        if (null != img) {
            img.close();
        }
    }
}

我已经提到Take a screenshot using MediaProjection and Android ImageReader.acquireLatestImage return invalid JPG \ reader-acquirelatestimage-returns-invalid-jpg 它们适用于真实设备,但不适用于模拟器。

如何使用模拟器进行屏幕截图?我的实现有问题吗?你有什么想法?

感谢所有帮助!

4

1 回答 1

0

在这里,我可以自己解决。我选择 Nexus 5X 作为测试模拟器,但它可能包含一些错误。(或规格?)我通过命令行创建了一个模拟器,如下所示。

[Terminal 0]
android update sdk -a -u -t sys-img-x86-android-23
android create avd -t 1 -b x86 -n "Emulator23_x86"
emulator -avd Emulator23_x86

[Terminal 1]
adb install -g path_to_apk/app-debug.apk
add pull /storage/sdcard/some.png .

它完全可以正常工作。因此,可能由 Android Studio 的设备管理器创建的模拟器也可以正常工作。那么你应该选择 Nexus* 以外的模拟器,比如 WVGA。

无论如何感谢你的家伙的帮助!

于 2016-07-31T15:20:27.853 回答