@ Marvin:
It seems to be little mistake in the ScreenshotCreater.convertRGBA() method:
instead of :
pixelInts[i++] = ( (0xFF000000)
| ((iR & 0xFF) << 24)
| ((iG & 0xFF) << 16)
| ((iB & 0xFF) << 8)
| ( iA & 0xFF) );
should be probably:
pixelInts[i++] = ( (0xFF000000)
| ((iA & 0xFF) << 24)
| ((iR & 0xFF) << 16)
| ((iG & 0xFF) << 8)
| ( iB & 0xFF) );
Would you please verify…
Thanks,
Bohdan.