- 论坛徽章:
- 0
|
py2exe-明明有user32.dll,为什么还要报错?
#hls.py
from Tkinter import *
import colorsys
def update(*args):
r,g,b = colorsys.hls_to_rgb(h.get()/255.0,l.get()/255.0,s.get()/255.0)
r,g,b = r*255,g*255,b*255
rgb.configure(text='RGB %d,%d,%d)' % (r,g,b))
c.configure(bg='#%02X%02X%02X' % (r,g,b))
root = Tk()
hue = Label(root,text='Hue')
hue.grid(row=0,column=0)
light = Label(root,text="Light"
light.grid(row=0,column=1)
sat = Label(root,text='Saturation')
sat.grid(row=0,column=2)
rgb = Label(root,text='RGB 0,0,0)')
rgb.grid(row=0,column=3)
h = Scale(root,from_=255,to_=0,command=update)
h.grid(row=1,column=0)
l = Scale(root,from_=255,to_=0,command=update)
l.grid(row=1,column=1)
s = Scale(root,from_=255,to_=0,command=update)
s.grid(row=1,column=2)
c = Canvas(root,width=100,height=100,bg='Black')
c.grid(row=1,column=3)
root.mainloop()
[书上抄的一道例题。]
# setup.py
from distutils.core import setup
import py2exe
setup(name="choosecolor",scripts=["hls.py"],)
hls.py用pythonw.exe可以直接正常打开,但就是编译不了。
我机子上是装了Tkinter的。(好像2.4的都是装python的时候就自己动装上Tkinter了吧。)
P.S:这些例子都是从《Python v2.1宝典》上抄的。刚看了一点,书就不见了。郁闷ing,还要赔给图书馆啊!五倍的money啊! |
|