Quickstart

Let’s get you set up with ImageConvert in under 2 minutes!

📦 Installation

You can install ImageConvert via pip:

pip install imageconvert

✅ Verify Installation

After installing, try this in Python to ensure it’s working:

from imageconvert import ImageConvert

print(ImageConvert.is_supported_format("test.jpg"))  # Should return True

🚀 Basic Examples

Convert an Image

ImageConvert.convert("input.jpg", "output.webp")

Batch Convert a Folder

ImageConvert.batch_convert("images/", "converted/", output_format=".png")

Get Image Metadata

info = ImageConvert.get_image_info("photo.jpg")
print(info["width"], info["height"])

Last updated