I'm capturing an Android emulator screen using the command:
adb shell screencap -p /sdcard/screencap.png
But it is taking like 500ms to execute the command and save the png file, there is a faster way to capture the screen data? I don't really need the PNG file itself, just the 'image data', since I'm just creating the PNG and loading it into the .NET Bitmap class to read the pixels colors.
I need a faster way to capture the image, since I need like 10 images per second of the emulator screen to interact with it, so recording the screen to generate an video file is not a 'solution' for me.
Thanks