# Bulk WebP image compressor

**Use case:** 

Compress image URLs in bulk, convert them to WebP, resize large files, strip metadata, and export optimized image files.

## Input

```json
{
  "imageUrls": [
    "https://picsum.photos/1200/800.jpg",
    "https://picsum.photos/900/600.jpg"
  ],
  "outputFormat": "webp",
  "quality": 80,
  "maxWidth": 1200,
  "stripMetadata": true,
  "pngCompressionLevel": 9
}
```

## Output

```json
{
  "fileName": {
    "label": "File",
    "format": "text"
  },
  "originalFormat": {
    "label": "Original Format",
    "format": "text"
  },
  "outputFormat": {
    "label": "Output Format",
    "format": "text"
  },
  "originalSizeKB": {
    "label": "Original (KB)",
    "format": "number"
  },
  "optimizedSizeKB": {
    "label": "Optimized (KB)",
    "format": "number"
  },
  "savingsPercent": {
    "label": "Savings %",
    "format": "number"
  },
  "width": {
    "label": "Width",
    "format": "number"
  },
  "height": {
    "label": "Height",
    "format": "number"
  },
  "downloadUrl": {
    "label": "Download",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Image Optimizer & Compressor](https://apify.com/automation-lab/bulk-image-optimizer) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/bulk-image-optimizer) to learn more, explore other use cases, and run it yourself.