본문 바로가기
GUI 프로젝트/파일 불러온 뒤 자동수정 저장 (Tkinter)

[파이썬 Tkinter GUI 만들기] 4. 버튼에 아이콘 넣기

by 만다린망고 2022. 1. 27.
반응형

최종 목표는 아래 프로그램이다. 

 

 

오늘은 버튼에 아이콘을 넣어보았다. 코드는 아래와 같다. 

 

import tkinter as tk
import tkinter.filedialog #이걸 따로 추가해야된다. 왜인지 모르겠음;

#윈도우 생성
root=tk.Tk()

#전체 이름
root.title('파일 여는 프로그램')

#창 크기 +붙은 부분은 좌상단 떨어진 위치
root.geometry("1000x400+100+100")


def openfile():
    global filename
    filename=tk.filedialog.askopenfilename(initialdir = "C:/Users/Public",
        title = "open file", filetypes = (("text file","*.txt"),("all files","*.*")))

lab00=tk.Label(root,text="파일 불러오기",font=('Arial 20 bold'),bg='white',fg="black",width=11,height=1)
lab00.grid(row=0,column=0,padx=5,pady=20)

#이미지 추가
file_img=tk.PhotoImage(file="경로/icon.png")
file_img=file_img.subsample(2,2)


button00 = tkinter.Button(root, overrelief="solid", command=openfile,bg="white",image=file_img)
button00.grid(row=0,column=1,padx=5,pady=20)

 

이미지를 추가하여 넣는건 어렵지 않았다. 문제는 사이즈조절이었는데, subsample  메소드를 사용하니 된다. 

 

실행하면 아래와 같다. 

 

반응형

댓글