Returns a WritablePixelFormat instance describing a pixel
layout with the pixels stored in 32-bit integers with the
non-premultiplied components stored in order, from MSb to LSb:
alpha, red, green, blue.
Pixels in this format can be decoded using the following sample code:
int pixel = array[rowstart + x];
int alpha = ((pixel >> 24) & 0xff);
int red = ((pixel >> 16) & 0xff);
int green = ((pixel >> 8) & 0xff);
int blue = ((pixel ) & 0xff);
WritabelPixelFormat<IntBuffer> describing the
indicated pixel format
Diagram: PixelReader