Notice
Recent Posts
Recent Comments
Tags
- django 엑셀불러오기
- ASP.Net Core 404
- javascript 유효성체크
- ViewData
- TempData
- 맥 오라클설치
- 하드 마이그레이션
- 강제이동
- 타임피커
- ViewBag
- asp.net dropdownlist
- 바코드 생성하기
- 바코드 스캔하기
- jquery 바코드생성
- XSS PHP
- javascript redirection
- 파일업로드 체크
- php 캐쉬제거
- 404에러페이지
- SSD 복사
- 말줄임표시
- asp.net core Select
- javascript 바코드 생성
- asp.net Select
- 하드 윈도우 복사
- javascript 바코드스캔
- 파일업로드 유효성체크
- XSS방어
- Mac Oracle
- jquery 바코드
웹개발자의 기지개
[python] tkinter - 메뉴와 대화상자3 - 이미지파일 선택[1] 본문
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
from tkinter import *
from tkinter.filedialog import *
def func_open():
filename = askopenfilename(parent=window, filetypes=(("GIF파일","*.gif"),("모든 파일","*.*")))
# PhotoImage 클래스는 GIF 이미지파일만 적용된다.
photo = PhotoImage(file=filename)
pLabel.configure(image=photo)
pLabel.image = photo
def func_exit():
window.quit()
window.destory()
window = Tk()
window.geometry("400x400")
window.title("이미지 뷰어")
photo = PhotoImage()
pLabel = Label(window,image=photo)
pLabel.pack(expand=1, anchor=CENTER)
mainMenu = Menu(window)
window.config(menu = mainMenu)
fileMenu = Menu(mainMenu)
mainMenu.add_cascade(label = "파일",menu=fileMenu)
fileMenu.add_cascade(label = "파일 열기", command = func_open)
fileMenu.add_separator()
fileMenu.add_cascade(label = "프로그램 종료", command = func_exit)
window.mainloop()
|
cs |
'python' 카테고리의 다른 글
[python] tkinter - 파일탐색기 (0) | 2021.03.28 |
---|---|
[python] tkinter - 메뉴와 대화상자3 - 이미지파일 선택[2] (0) | 2021.03.28 |
[python] tkinter - 메뉴와 대화상자2 - 파일저장 (4) | 2021.03.28 |
[python] tkinter - 메뉴와 대화상자1 - 파일선택 (0) | 2021.03.28 |
[python] tkinter - 이벤트 처리2 - 마우스 이벤트 (0) | 2021.03.28 |
Comments