# Watermark Logo Center Image API

**Use case:** 

Overlay a centered logo watermark on any image with opacity and scale controls. Returns a hosted watermarked PNG image URL exported to JSON.

## Input

```json
{
  "imageFiles": [
    "https://github.com/ParseForge/apify-assets/blob/65f2790e17ebc08b3c4ae5ca92cbb43a444c2ab1/watermark-image-api/original.avif?raw=true"
  ],
  "watermarkText": "",
  "fontFamily": "inter",
  "textColor": "#ffffff",
  "textOpacity": 90,
  "textScale": 50,
  "letterSpacing": 0,
  "backgroundOpacity": 35,
  "logoFile": "https://raw.githubusercontent.com/ParseForge/apify-assets/3fb8b140a224231d5c4ffdf30fc22f78c581cf3f/watermark-image-api/react_logo.png",
  "logoOpacity": 30,
  "logoScale": 80,
  "position": "center",
  "offsetXPercent": 0,
  "offsetYPercent": 0,
  "outputFormat": "png"
}
```

## Output

```json
{
  "watermarkedImageUrl": {
    "label": "Watermarked Image",
    "format": "image"
  },
  "originalImageUrl": {
    "label": "Original Image",
    "format": "link"
  },
  "timestamp": {
    "label": "Processed At",
    "format": "datetime"
  },
  "status": {
    "label": "Status"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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