25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
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))