Warning: session_start(): open(/var/lib/php/sessions/sess_3gn886gnnijdl5lg27c0f39m5m, 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
go("#137") -- split
_, _, s = string.find(result, ": (.+)")
parts = split(s, ", ")
-- copy image
w, h = img.width, img.height
pixels = {}
for y = 0, h-1 do
for x = 0, w-1 do
pixels[y*w+x+1] = img.getInt(x, y)
end
end
-- invert the segments
for _, segment in ipairs(parts) do
x1, x2 = unpack(split(segment, "-"))
for x = x1, x2-1 do
for y = 0, h-1 do
pixels[y*w+x+1] = 0xFFFFFF - pixels[y*w+x+1]
end
end
end