I found my answer in a previous post: Saving a Numpy array as an image. The only problem being, there isn\'t much instruction on using the PyPNG module.
There are only
import matplotlib.pyplot as plt import numpy as np plt.imshow(np.random.random(100, 100)) plt.savefig('')