Warning: session_start(): open(/var/lib/php/sessions/sess_2nqsjl2kchaa3ullk7sc5oartl, 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 BWImage posterizeBWImage(int brightnessLevels, BWImage img) {
if (brightnessLevels >= 256 || img == null) ret img;
byte[] pixels = img.getBytes();
int w = img.getWidth(), h = img.getHeight(), n = pixels.length;
byte[] pixels2 = new[n];
double factor1 = doubleRatio(brightnessLevels, 256);
double factor2 = doubleRatio(255, brightnessLevels-1);
for i to n:
pixels2[i] = iround(ifloor(ubyteToInt(pixels[i])*factor1)*factor2);
ret new BWImage(w, h, pixels2);
}