Warning: session_start(): open(/var/lib/php/sessions/sess_l71sd9avt7hliotrf98rgadekg, 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 ImageSurface quickShowZoomedImage_is; static ImageSurface quickShowZoomedImage(final RGBImage image) { ret quickShowZoomedImage(image, 2.0); } static ImageSurface quickShowZoomedImage(final RGBImage image, final double zoom) { ret quickShowZoomedImage(image.getBufferedImage(), zoom); } static ImageSurface quickShowZoomedImage(final BufferedImage image) { ret quickShowZoomedImage(image, 2.0); } static ImageSurface quickShowZoomedImage(S title, final BufferedImage image, final double zoom) { ImageSurface is = quickShowZoomedImage(image, zoom); setFrameTitle(is, title); ret is; } static ImageSurface quickShowZoomedImage(final BufferedImage image, final double zoom) { ret (ImageSurface) swingAndWait(func { quickShowZoomedImage_is = showImage(image, quickShowZoomedImage_is); showFrame(getFrame(quickShowZoomedImage_is)); if (quickShowZoomedImage_is.zoomX != zoom || quickShowZoomedImage_is.zoomY != zoom) { quickShowZoomedImage_is.setZoom(zoom); packFrameInTopRightCorner(quickShowZoomedImage_is); } ret quickShowZoomedImage_is; }); }