On Sep 18, 2017, at 9:15 AM, Phil Race <[email protected]> wrote:
> FWIW I think the difference that matters is that OpenJDK has different colour
> profile files,
> so even though they are processed by the same code the results may be
> different.
>
>>> On 9/17/17 2:55 PM, Bill Ross wrote:
>>>> out.println("" + buffered.getRGB(i, j));
>>>>
To get at the raw pixel data you would want to do for example:
int[] iArray = new int[3];
buffered.getData().getPixel(i, j, iArray);
Brian
