# Bulk JPG product image resizer

**Use case:** 

Resize and compress product image URLs to JPG with fixed max dimensions, quality settings, and stripped EXIF metadata.

## Input

```json
{
  "imageUrls": [
    "https://picsum.photos/id/1060/1600/1000.jpg",
    "https://picsum.photos/id/1025/1400/900.jpg"
  ],
  "outputFormat": "jpg",
  "quality": 75,
  "maxWidth": 1000,
  "maxHeight": 1000,
  "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.