# Watermark Text Bottom Right Image API

**Use case:** 

Stamp a text watermark in the bottom-right corner of any image with font, color, and opacity options. Returns a hosted JPEG image URL as JSON.

## Input

```json
{
  "imageFiles": [
    "https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885_1280.jpg"
  ],
  "watermarkText": "© ParseForge",
  "fontFamily": "impact",
  "textColor": "#ffffff",
  "textOpacity": 85,
  "textScale": 40,
  "letterSpacing": 2,
  "backgroundOpacity": 0,
  "logoFile": "https://raw.githubusercontent.com/ParseForge/apify-assets/3fb8b140a224231d5c4ffdf30fc22f78c581cf3f/watermark-image-api/react_logo.png",
  "logoOpacity": 30,
  "logoScale": 80,
  "position": "bottom-right",
  "offsetXPercent": 0,
  "offsetYPercent": 0,
  "outputFormat": "jpeg"
}
```

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