You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 27, 2025. It is now read-only.
Currently the write() function is def write( image, flush=False ):
which writes to stdout; it should be changed to: def write( image, flush=False, file=sys.stdout ):
to allow writing to streams other than stdout.
Also there is a write() function but no read(), only a reading iterator is provided.
There should be a read() function that is referenced in the iterator.