代码:
import tkinter, os
from PIL import ImageTk, Image
def sortFileImages(files):
black = [i for i in files if 'black' in i]
white = [i for i in files if 'white' in i]
pawns = [[i]*7 for i in files if 'pawn' in i]
return black + pawns[0] + [' ']*32 + pawns[1] + white
files = sortFileImages(files=os.listdir("web/images/"))
root = tkinter.Tk()
index = 0
for r in range(8):
for c in range(8):
if files[index] != ' ':
img = ImageTk.PhotoImage(Image.open('web/images/{}'.format(files[index])).resize((64,64)))
else:
img = ImageTk.PhotoImage(Image.new('RGB', (64,64)))
label = tkinter.Label(root, image=img, borderwidth=8)
# Color the grid squares
if (r%2 == 0 and c%2 == 0) or (r%2 == 1 and c%2 == 1):
label.configure(background='grey')
else:
label.configure(background='white')
label.grid(row=r,column=c)
index += 1
root.mainloop()
变量值:
files
['black-bishop.png', 'black-bishop2.png', 'black-king.png', 'black-knight.png', 'black-knight2.png', 'black-pawn.png', 'black-queen.png', 'black-rook.png', 'black-rook2.png', 'black-pawn.png', 'black-pawn.png', 'black-pawn.png', 'black-pawn.png', 'black-pawn.png', 'black-pawn.png', 'black-pawn.png', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', 'white-pawn.png', 'white-pawn.png', 'white-pawn.png', 'white-pawn.png', 'white-pawn.png', 'white-pawn.png', 'white-pawn.png', 'white-bishop.png', 'white-bishop2.png', 'white-king.png', 'white-knight.png', 'white-knight2.png', 'white-pawn.png', 'white-queen.png', 'white-rook.png', 'white-rook2.png']
我知道这不是正确的顺序,但我现在只想让它显示在板上。
输出:
问题:
我期待在顶部 2行和底部 2 行的每个方格上获得碎片。
- 为什么不是这样?
- 还有,为什么车被黑盒子包围?我的图像没有那个框。
编辑:
使用@Boendal 答案,我得到以下信息:
为什么有些方块的中心有黑色方块(尤其是棋子所在的地方)?
编辑#2:
暗方块是由于图像不透明。
通过使用此处找到的信息将它们转换为透明来修复