Warning: session_start(): open(/var/lib/php/sessions/sess_qidr7gknk0lpe9d9nriuble9c6, 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 RGBImage rgbMarkPoint(RGBImage img, Pt p, Color color, int size) {
if (img != null &&p != null)
rgbFillRect(img, p.x-size/2, p.y-size/2, size, size, color);
ret img;
}
static RGBImage rgbMarkPoint(RGBImage img, Pt p) {
ret rgbMarkPoint(img, p, Color.red, 3);
}
static RGBImage rgbMarkPoint(RGBImage img, int x, int y) {
ret rgbMarkPoint(img, new Pt(x, y));
}
static BufferedImage rgbMarkPoint(BufferedImage img, Pt p, Color color, int size default 3) {
if (img != null &&p != null)
rgbFillRect(img, p.x-size/2, p.y-size/2, size, size, color);
ret img;
}