I'm trying to make a 100x100
image with each pixel being a different random colour, like this example:
I've tried to use matplotlib
but I'm not having much luck. Should I maybe be using PIL?
This is simple with numpy
and pylab
. You can set the colormap to be whatever you like, here I use spectral.
from pylab import imshow, show, get_cmap
from numpy import random
Z = random.random((50,50)) # Test data
imshow(Z, cmap=get_cmap("Spectral"), interpolation='nearest')
show()
Your target image looks to have a grayscale colormap with a higher pixel density than 100x100:
import pylab as plt
import numpy as np
Z = np.random.random((500,500)) # Test data
plt.imshow(Z, cmap='gray', interpolation='nearest')
plt.show()