Show PIL image on notebook    
   On the notebook, after the following code
import Image
im = Image.open(DATA+'tree.png')
im2 = im.rotate(90)
what is the instruction that will show the PIL im2 image ?
import Image
im = Image.open(DATA+'tree.png')
im2 = im.rotate(90)
im2.save('tree2.png')
Asked: 2012-08-13 19:04:06 +0100
Seen: 827 times
Last updated: Aug 14 '12
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
            
Just a guess - close the image? It has to actually save in the notebook cell directory to show up.