# Convert the final artistic logo image to JPG format
from PIL import Image
# Load the artistic PNG
png_path = '/mnt/data/painting_with_roro_rrf_logo_artistic.png'
jpg_path = '/mnt/data/painting_with_roro_rrf_logo_artistic.jpg'
# Open and convert to RGB (JPG doesn't support alpha)
img = Image.open(png_path).convert("RGB")
img.save(jpg_path, "JPEG", quality=95)
jpg_path