Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

5 Answers

up vote 11 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.

share|improve this answer

Maybe you have scipy:

import scipy
scipy.misc.imsave('outfile.jpg', image_array)
share|improve this answer
6  
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
Be careful when converting to jpg since it is lossy and so you may not be able to recover the exact data used to generate the image. – Feanil Dec 20 '12 at 15:20
numpy does not imply scipy – tcaswell Jun 5 at 4:20

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)
share|improve this answer
Befoe imshow, one has to add plt.figure() and plt.show() – Framester Aug 16 '11 at 13:38
4  
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

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

share|improve this answer
1  
Image is a module of PIL. Do "print Image.__file__" – Juh_ Sep 17 '12 at 11:21

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)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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