Warning: session_start(): open(/var/lib/php/sessions/sess_cr29a8qropmrqgbci5nnlkh183, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static int colorCount332_max(int max, BufferedImage img) {
if (max == 0) ret 0;
int w = img.getWidth(), h = img.getHeight(), n = 0;
new BitSet bs;
for y to h: for x to w: {
int idx = ubyteToInt(to332(img.getRGB(x, y)));
if (!bs.get(idx)) {
if (++n >= max) ret n;
setBit(bs, idx);
}
ret n;
}