■Explanation of the Crop function
This article explains how to crop and display an image using tkinter. The function used is crop. Note that a method for simply displaying an image is explained here.
■An example of the crop function
The "crop" part below corresponds to the process of cutting out an image.
import tkinter as tk
from PIL import Image, ImageTk
app = tk.Tk()
img = Image.open('test.jpg')
crop_img = img.crop((100, 100, 300, 300)) # Crop the image to the range 100,100~300,300