■ PhotoImage 클래스의 width/height 메소드를 사용해 이미지 크기를 구하는 방법을 보여준다.
▶ 예제 코드 (PYTHON)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
from tkinter import * tk = Tk() canvas = Canvas(tk, width = 500, height = 500) canvas.pack() photoImage = PhotoImage(file = "images/background.png") print("이미지 크기 : %dx%d" % (photoImage.width(), photoImage.height())) canvas.create_image(0, 0, anchor = NW, image = photoImage) tk.mainloop() """ 이미지 크기 : 100x100 """ |