我试图用图像创建一个按钮,但是图像变得非常小和黑。
我在互联网上搜索了一个解决方案,但仍然无法正常工作。
这是我的代码的一部分:
ph = tk.PhotoImage(file = "X.gif")
btn = tk.Button(master = back, command = game, height = 10, width = 20)
btn.config(image = ph)
btn.image = ph
btn.grid(row = 0, column = 0)
答案 0 :(得分:0)
我设法通过删除Button构造函数中的height和width参数并调整图像大小来做到这一点。
现在的代码是:
for index, row in df.iterrows():
df['Text']=df['Text'].str.replace('\n',' ')
df['Text']=df['Text'].str.replace('################################ end of story 1 ##############################','')
df['Text']=df['Text'].str.replace('-','')
df['Text']=df['Text'].str.replace('=','')
df['Text']=df['Text'].str.replace(':','')
df['Text']=df['Text'].str.replace('.','')
df['Text']=df['Text'].str.replace('()','')
我了解到定义图像后,宽度和高度都是以像素为单位的大小。