Warning: session_start(): open(/var/lib/php/sessions/sess_7ug43aep9drkq122sjkicgsq5p, 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 BufferedImage scaleBufferedImagePixelated(BufferedImage img, int w, int h) {
int w1 = img.getWidth(), h1 = img.getHeight();
int[] pixels1 = pixelsOfBufferedImage(img);
int[] pixels = new[w*h];
int i = 0;
double y1 = 0, ystep = doubleRatio(h1, h), xstep = doubleRatio(w1, w);
for y to h: {
i1 = ifloor(y1)*w1;
y1 += ystep;
double x1 = 0;
for x to w: {
pixels[i++] = pixels1[i1+ifloor(x1)];
x1 += xstep;
}
}
ret intArrayToBufferedImage(pixels, w, h);
}