Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Tkinter에서 PIL을 어떻게 사용합니까?

<시간/>

Python의 PIL 또는 Pillow 패키지는 프로그램에서 이미지를 처리하는 방법을 제공합니다. 이미지를 열고 다른 용도로 이미지를 조작하고 데이터를 시각화하는 데 사용할 수도 있습니다. Tkinter에서 PIL 패키지를 사용하려면 환경에 Python Pillow 라이브러리를 설치해야 합니다.

Pillow를 설치하려면 pip install pillow를 입력하기만 하면 됩니다. . 설치가 성공적으로 완료되면 프로젝트에서 모듈을 가져와 추가 구현에 사용할 수 있습니다.

예시

이 예에서는 Python Pillow 패키지를 사용하여 캔버스 위젯에 이미지를 표시했습니다.

# Import the required libraries
from tkinter import *
from PIL import Image, ImageTk

# Create an instance of tkinter frame or window
win=Tk()

# Set the size of the window
win.geometry("700x350")

# Create a canvas widget
canvas=Canvas(win, width=700, height=350)
canvas.pack()

# Load the image
img=ImageTk.PhotoImage(file="opera.jpg")

# Add the image in the canvas
canvas.create_image(350, 200, image=img, anchor="center")

win.mainloop()

출력

위의 코드를 실행하면 창에 이미지가 표시됩니다.

Tkinter에서 PIL을 어떻게 사용합니까?