Warning: session_start(): open(/var/lib/php/sessions/sess_2g77vf7hluu6clnmrihdh5n7e8, 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 area(Rect r) {
ret rectArea(r);
}
static double area(DoubleRect r) {
ret r == null ? 0 : r.w*r.h;
}
ifclass WidthAndHeight
static int area(WidthAndHeight img) {
ret img == null ? 0 : img.getWidth()*img.getHeight();
}
endif
static int area(BufferedImage img) {
ret img == null ? 0 : img.getWidth()*img.getHeight();
}