# Watermark Diagonal Tiled Image API

**Use case:** 

Apply a diagonal CONFIDENTIAL text watermark across any image to protect it. Returns a hosted WebP watermarked image URL exported to JSON.

## Input

```json
{
  "imageFiles": [
    "https://cdn.pixabay.com/photo/2017/08/30/01/05/milky-way-2695569_1280.jpg"
  ],
  "watermarkText": "CONFIDENTIAL",
  "fontFamily": "arial",
  "textColor": "#ff0000",
  "textOpacity": 70,
  "textScale": 60,
  "letterSpacing": 4,
  "backgroundOpacity": 20,
  "logoFile": "https://raw.githubusercontent.com/ParseForge/apify-assets/3fb8b140a224231d5c4ffdf30fc22f78c581cf3f/watermark-image-api/react_logo.png",
  "logoOpacity": 30,
  "logoScale": 80,
  "position": "diagonal-tl-br",
  "offsetXPercent": 0,
  "offsetYPercent": 0,
  "outputFormat": "webp"
}
```

## 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.