Warning: session_start(): open(/var/lib/php/sessions/sess_ile1c0q2rl9a9g53hn5ek7arrj, 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
// this copies to RGBA
static BufferedImage copyImage(Image img) {
if (img == null) null;
if (img cast BufferedImage)
ret copyImage(img);
int w = img.getWidth(), h = img.getHeight();
BufferedImage bi = newBufferedImage(w, h);
drawImage(bi, img);
ret bi;
}
// this one stays in color model. inconsistent i guess
static BufferedImage copyImage(BufferedImage bi) {
if (bi == null) null;
ColorModel cm = bi.getColorModel();
boolean isAlphaPremultiplied = cm.isAlphaPremultiplied();
WritableRaster raster = bi.copyData(bi.getRaster().createCompatibleWritableRaster());
return new BufferedImage(cm, raster, isAlphaPremultiplied, null);
}