Skip to content

Instantly share code, notes, and snippets.

@kolibril13
Created February 10, 2025 21:12
Show Gist options
  • Save kolibril13/8cfdac337979bc8d21fca87e8268ce65 to your computer and use it in GitHub Desktop.
Save kolibril13/8cfdac337979bc8d21fca87e8268ce65 to your computer and use it in GitHub Desktop.
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "pillow",
# ]
# ///
from pathlib import Path
from PIL import Image
# Define paths
desktop_path = Path.home() / "Desktop"
# Scan for PNG files and convert to JPEG
for png_file in desktop_path.glob("*.png"):
jpeg_file = png_file.with_suffix(".jpeg")
img = Image.open(png_file).convert("RGB")
img.save(jpeg_file, "JPEG", quality=70)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment