Warning: session_start(): open(/var/lib/php/sessions/sess_a41n1rno29eih3ned7q3gc1179, 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 dropAlphaChannelFromBufferedImage(BufferedImage img) {
if (img == null || img.getType() == BufferedImage.TYPE_INT_RGB) ret img;
int w = img.getWidth(), h = img.getHeight();
BufferedImage newImage = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
int[] rgb = img.getRGB(0, 0, w, h, null, 0, w);
newImage.setRGB(0, 0, w, h, rgb, 0, w);
ret newImage;
}