* Create an {@link Image} with {@code data}. Writing to the {@code data}
* array will update the {@link Image}.
*/
public ARGBScreenImage( final int width, final int height, final int[] data )
{
super( new IntArray( data ), new long[]{ width, height }, new Fraction() );
setLinkedType( new ARGBType( this ) );
this.data = data;
final SampleModel sampleModel = ARGB_COLOR_MODEL.createCompatibleWritableRaster( 1, 1 ).getSampleModel()
.createCompatibleSampleModel( width, height );