# Quickstart

### 📦 Installation

You can install ImageConvert via pip:

```bash
pip install imageconvert
```

### ✅ Verify Installation

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

```python
from imageconvert import ImageConvert

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

### 🚀 Basic Examples

#### Convert an Image

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

#### Batch Convert a Folder

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

#### Get Image Metadata

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