pdf_add_image
Add images to PDF documents by specifying exact position and dimensions on any page. Insert logos, signatures, or graphics into PDF files with precise placement control.
Instructions
Add an image to a PDF.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| pdf_path | Yes | ||
| page_number | Yes | ||
| image_path | Yes | ||
| x | Yes | ||
| y | Yes | ||
| width | Yes | ||
| height | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "height": {
      "title": "Height",
      "type": "number"
    },
    "image_path": {
      "title": "Image Path",
      "type": "string"
    },
    "page_number": {
      "title": "Page Number",
      "type": "integer"
    },
    "pdf_path": {
      "title": "Pdf Path",
      "type": "string"
    },
    "width": {
      "title": "Width",
      "type": "number"
    },
    "x": {
      "title": "X",
      "type": "number"
    },
    "y": {
      "title": "Y",
      "type": "number"
    }
  },
  "required": [
    "pdf_path",
    "page_number",
    "image_path",
    "x",
    "y",
    "width",
    "height"
  ],
  "type": "object"
}