跳转至

maliang.toolbox.enhanced

字数 57 个   代码 10 行   阅读时间不到 1 分钟   访问量

源代码:maliang/toolbox/enhanced.py

Enhanced versions of some tkinter classes and functions.

🟢PhotoImage

class public | PhotoImage PhotoImage

🟡resize

method public

1
2
3
4
5
def resize(
    self,
    width: int,
    height: int,
) -> PhotoImage: ...
Resize the PhotoImage.

  • width: The new width of the image
  • height: The new height of the image

🟡scale

method public

1
2
3
4
5
def scale(
    self,
    x: float,
    y: float,
) -> PhotoImage: ...
Scale the PhotoImage.

  • x: The x-axis scale factor
  • y: The y-axis scale factor