from PIL import Image, ImageDraw, ImageFont
import matplotlib.pyplot as plt
# Load the original image
image_path = "/mnt/data/file-VVxabzPdfxQPEMVfrB5mtf" # Original uploaded image
original_image = Image.open(image_path).convert("RGBA")
# Display original image for reference
original_image.show()