when i run this code an icon for the image is created but when clicked it says that no preview is availeble any help would be grately apretiated. heres the code.
from Image import *
import ImageDraw
z=1
win=new('RGB', (400,400), 'rgb(255,255,255)')
win.save('c:\\Documents and Settings\\bradley\\desktop\\python programs\\frac.png')
while z < 100000:
x=(z**+1)
y=(z**+1)
frac=open('c:\\Documents and Settings\\bradley\\desktop\\python programs\\frac.png')
draw=ImageDraw.Draw(frac)
draw.point((x,y),fill=0)
frac.save('c:\\Documents and Settings\\bradley\\desktop\\python programs\\frac.png')
z=x
print 'im working'