Now I have 2 dimension array that collects all color's pixel
and I have 1 dimension array that collects a specific color that every pixel need to check with this array. But how to check this 2 arrays
first array is
array_A = new String[bitmap.getWidth()][bitmap.getHeight()];
Another is final String[] array_B = { "ffcc33","ffcc00",....} so how can I check this 2 arrays :)) Thanks in Advance