I was wondering if there is a way to iteratively write png files using PyPNG (as in, row-by-row, or chunk-by-chunk) without providing the png.Writer()
with the entire data. I've looked through the documentation, but all the writer methods require all rows of the PNG at once (uses too much memory).
Thanks in advance!