fork download
  1. from PIL import Image
  2.  
  3. # Load the uploaded image
  4. img_path = '/mnt/data/ส่งจดหมาย.png'
  5. img = Image.open(img_path)
  6.  
  7. # Display the image to the user
  8. img.show()
  9.  
Success #stdin #stdout 0.03s 25552KB
stdin
Standard input is empty
stdout
from PIL import Image

# Load the uploaded image
img_path = '/mnt/data/ส่งจดหมาย.png'
img = Image.open(img_path)

# Display the image to the user
img.show()