我正在尝试 Tk 中的按钮,并且已将图像加载到按钮:
package require Tk
image create photo myimage -file "../button.png"
ttk::button .button -image myimage
place .button -x 0 -y 0
但是button.png
图像非常大 (200x100),因此按钮会自行调整大小以显示整个图像。是否可以将按钮调整为特定大小,例如 100x50(也许通过使用网格布局?),并让按钮重新采样其图像以使其适合按钮?