您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
332B

  1. import tkinter as tk
  2. from PIL import Image, ImageTk
  3. from PIL.Image import Resampling
  4. icons = {}
  5. def _load_icon(path, size):
  6. img = Image.open(path)
  7. img = img.resize(size, resample=Resampling.HAMMING)
  8. return ImageTk.PhotoImage(img)
  9. def load_icons():
  10. icons["refresh"] = _load_icon("ui/icons/refresh.png", (24, 24))