From: Christopher B. <Chr...@no...> - 2006-10-10 17:00:10
|
Hi all: Fredrik Lundh wrote: > A little later that planned, but PIL 1.1.6 beta 2 is now available from SVN: > > http://svn.effbot.python-hosting.com/tags/pil-1.1.6b2/ > > A tarball will appear on effbot.org shortly: > > http://effbot.org/downloads/#Imaging > > As usual, PIL 1.1.6 supports all Python versions from 1.5.2 and onwards, > including 2.5. > > For a hopefully complete list of changes, see: > > http://effbot.org/zone/pil-changes-116.htm From there: """ * Added "fromarray" function, which takes an object implementing the NumPy array interface and creates a PIL Image from it. (from Travis Oliphant). * Added NumPy array interface support (__array_interface__) to the Image class (based on code by Travis Oliphant). This allows you to easily convert between PIL image memories and NumPy arrays: import numpy, Image i = Image.open('lena.jpg') a = numpy.asarray(i) # a is readonly i = Image.fromarray(a) """ I hope some of us numpy users will be able to test this new functionality while it's in beta. -Chris -- Christopher Barker, Ph.D. Oceanographer NOAA/OR&R/HAZMAT (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chr...@no... |