Warning: session_start(): open(/var/lib/php/sessions/sess_eq63q3nh3rfo28v8flhgo0js0c, 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
srecord noeq RegionToBWImage(IImageRegion region) {
Rect bounds;
BWimage image;
run {
bounds = region.bounds();
int x1 = bounds.x, y1 = bounds.y, w = bounds.w, h = bounds.h;
byte[] pixels = new[w*h];
for y to h:
for x to w:
pixels[i] = region.contains(x1+x, y1+y) ? 0 : 0xFF;
image = new BWImage(w, h, pixels);
}
}