Warning: session_start(): open(/var/lib/php/sessions/sess_89rc5ld7odj94e3hafj92fn88c, 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 img_getCenterPortion(BufferedImage img, int w, int h) {
int iw = img.getWidth(), ih = img.getHeight();
if (iw < w || ih < h) fail("Too small");
int x = (iw-w)/2, y = (ih-h)/2;
ret clipBufferedImage(img, x, y, w, h);
}