Simple image code does not seem to work in my version of 3.6, such as this from the Image help file:
(
j = Image.new(400,300);
j.lockFocus;
Pen.translate(100, 100);
1000.do{
Pen.color = Color.green(rrand(0.0, 1), rrand(0.0, 0.5));
Pen.addAnnularWedge(
(100.rand)@(100.rand),
rrand(10, 50),
rrand(51, 100),
2pi.rand,
2pi.rand
);
Pen.perform([\stroke, \fill].choose);
};
j.unlockFocus;
)