[18:59:08] <yezariael> I have a generator for generating rows of a bitmap image. I want to keep drawing these lines to a file until StopIteration or KeyboardInterrupt is raised. Can I dynamically change the Image's or PixelArray's height?
[19:00:04] <yezariael> I suppose I could write all my lines to an array and when necessary create the image from that array, but I thought I could save the memory on the array by directly writing into the PixelArray.