# Image To WebP 16x9 Converter

**Use case:** 

Convert JPG images into compact WebP files cropped to a 16:9 aspect ratio at high quality. Returns a hosted WebP file URL exported to JSON.

## Input

```json
{
  "imageFiles": [
    {
      "url": "https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885_1280.jpg"
    }
  ],
  "outputFormat": "webp",
  "aspectRatio": "16:9",
  "svgColor": "black, white, #FF5733",
  "quality": "high"
}
```

## Output

```json
{
  "convertedImageUrl": {
    "label": "Converted Image",
    "format": "image"
  },
  "originalImageUrl": {
    "label": "Original Image",
    "format": "link"
  },
  "outputFormat": {
    "label": "To Format"
  },
  "originalFormat": {
    "label": "From Format"
  },
  "status": {
    "label": "Status"
  },
  "originalSize": {
    "label": "Original Size (bytes)"
  },
  "convertedSize": {
    "label": "Converted Size (bytes)"
  },
  "originalDimensions": {
    "label": "Original dimensions"
  },
  "convertedDimensions": {
    "label": "Converted dimensions"
  },
  "timestamp": {
    "label": "Timestamp"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Image Converter API](https://apify.com/parseforge/image-converter-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/image-converter-api) to learn more, explore other use cases, and run it yourself.