local framebuf = require("framebuf") local fb = framebuf.new() fb:ppm(fs.open("e.pnm","rb")) for x = 1, 300 do for y = 1, 300 do local c = (x + y) % 2 -- fb:plot(x, y, c, c, c) end end local m = peripheral.wrap "bottom" m.clear() m.setTextScale(0.5) local t = term.redirect(m) local _, bee = pcall(function() fb:present() end) term.redirect(t) print(bee)