Re: [matplotlib-devel] RGBA in imshow

2006-06-02 Thread Eric Firing
Jeff, Thanks for the report. I have committed a bugfix combined with a speedup: the check for gray will not occur if the image is cached. Eric - Original Message - From: Jeff Whitaker <[EMAIL PROTECTED]> Date: Friday, June 2, 2006 1:07 pm Subject: [matplotlib-devel] RGBA in imshow To:

[matplotlib-devel] RGBA in imshow

2006-06-02 Thread Jeff Whitaker
Hi all: It looks like one can no longer plot an array of RGBA values in imshow - I suspect this is a consequence of the recent changes to the way colors are handled. For example from pylab import * # make a random rgba matrix rgba = ones((64,64,4),'f') for k in range(3): rgba[:,:,k] = rand(