Warning: session_start(): open(/var/lib/php/sessions/sess_kjsftq59aeu7t24l8jo2qvfmr4, 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
svoid drawCenteredText(Graphics2D g, S text, int x, int y, int w, int h, Color color) {
g.setColor(color);
FontMetrics fm = g.getFontMetrics();
Pt p = centerTextInRect(fm, text, rect(x, y, w, h));
g.drawString(text, p.x, p.y);
}
static BufferedImage drawCenteredText(BufferedImage image, S text, Color color default black()) {
if (image != null)
drawCenteredText(createGraphics(image), text, 0, 0, image.getWidth(), image.getHeight(), color);
ret image;
}
static BufferedImage drawCenteredText(BufferedImage image, S text, Color color default black(), Font font) {
if (image != null)
var g = createGraphics(image);
if (font != null)
g.setFont(font);
drawCenteredText(g, text, 0, 0, image.getWidth(), image.getHeight(), color);
}
ret image;