up vote 6 down vote favorite
2
share [g+] share [fb]

I have a matrix in the type of a Numpy array. How would I write it to disk it as an image? Any format works (png, jpeg, bmp...). One important constraint is that PIL is not present.

link|improve this question
feedback

5 Answers

up vote 5 down vote accepted

You can use PyPNG. It's a pure Python (no dependencies) open source PNG encoder/decoder and it supports writing NumPy arrays as images.

link|improve this answer
feedback

If you have numpy, then you have scipy:

import scipy
scipy.misc.imsave('outfile.jpg', image_array)

I think this is a more natural solution since it is enclosed within numpy/scipy. At least, that's what I do.

link|improve this answer
imsave lives in .../scipy/misc/pilutil.py which uses PIL – Denis Apr 16 '10 at 9:46
Ah, I was not aware. Thank you for the reference. – Steve Tjoa Apr 16 '10 at 18:34
feedback

If you have matplotlib, you can do:

import matplotlib.pyplot as plt
plt.imshow(matrix) #Needs to be in row,col order
plt.savefig(filename)
link|improve this answer
Befoe imshow, one has to add plt.figure() and plt.show() – Framester Aug 16 '11 at 13:38
No, for the pyplot interface, the plt.figure() is superfluous. Also, you only need the plt.show() if you want to see a figure window as well--in this case only saving an image file was desired, so there was no need to call show(). – DopplerShift Aug 22 '11 at 19:42
feedback

matplotlib svn has a new function to save images as just an image -- no axes etc. it's a very simple function to backport too, if you don't want to install svn (copied straight from image.py in matplotlib svn, removed the docstring for brevity):

def imsave(fname, arr, vmin=None, vmax=None, cmap=None, format=None, origin=None):
    from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas
    from matplotlib.figure import Figure

    fig = Figure(figsize=arr.shape[::-1], dpi=1, frameon=False)
    canvas = FigureCanvas(fig)
    fig.figimage(arr, cmap=cmap, vmin=vmin, vmax=vmax, origin=origin)
    fig.savefig(fname, dpi=1, format=format)
link|improve this answer
feedback

given a numpy array "A":

import Image
im = Image.fromarray(A)
im.save("your_file.jpeg")

you can replace "jpeg" with almost any format you want. More details about the formats here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.