Image to PDF

v1.0.0

Combine one or more images into a single PDF document with page layout control (page size, orientation, fit mode, margin).

0· 65·0 current·0 all-time
byRishabh Dugar@rishabhdugar

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for rishabhdugar/img-to-pdf.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Image to PDF" (rishabhdugar/img-to-pdf) from ClawHub.
Skill page: https://clawhub.ai/rishabhdugar/img-to-pdf
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install img-to-pdf

ClawHub CLI

Package manager switcher

npx clawhub@latest install img-to-pdf
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (combine images to PDF) align with the contents of SKILL.md and skill.json. The skill requires an API key sent in the CLIENT-API-KEY header and accepts image URLs, base64 images, or multipart files — all coherent with a hosted PDF conversion service.
Instruction Scope
Instructions explicitly tell the agent to POST image data (URLs, base64, or files) to https://pdfapihub.com/api/v1/convert/image/pdf. This is expected for the described function, but it means user data (images) will be transmitted to a third party; the SKILL.md does not attempt to access unrelated system files or environment variables.
Install Mechanism
No install spec and no code files — the skill is instruction-only and does not write code or binaries to disk. This minimizes install-time risk.
Credentials
The skill does not declare required environment variables but requires an API key header at runtime (skill.json declares apiKey auth). This is proportionate to the purpose; users must supply a service API key. There are no unrelated credential requests.
Persistence & Privilege
always is false and the skill does not request persistent system privileges or modify other skill/system configs. Autonomous invocation is allowed (platform default) but is not combined with elevated privileges here.
Assessment
This skill forwards whatever images you provide to pdfapihub.com. Before using it, verify you trust that service: read its privacy policy and retention terms, avoid uploading sensitive documents (medical, ID, financial) unless you're comfortable with third-party storage/processing, and use a dedicated or limited-scope API key if possible. Because the skill is instruction-only, it won't install code on your system, but it will transmit your data over the network — confirm the HTTPS endpoints and test with non-sensitive images first.

Like a lobster shell, security has layers — review code before you run it.

latestvk97ev9hrkq13pjt3wgvs95qxh5850hg5
65downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Image to PDF

What It Does

Combines one or more images into a single PDF document. Supports page size selection, orientation, fit modes, and margin control.

When to Use

  • Convert scanned images into a PDF document
  • Combine multiple photos/screenshots into one PDF
  • Create a PDF portfolio from image files

Required Inputs

Provide one of:

  • image_url — single image URL
  • image_urls — array of image URLs
  • images_base64 — array of base64-encoded images
  • Multipart upload with file field(s)

Authentication

Send your API key in the CLIENT-API-KEY header.

Get your free API key at https://pdfapihub.com. Full API documentation is available at https://pdfapihub.com/docs.

Use Cases

  • Scanned Document Assembly — Combine scanned pages into a single PDF document
  • Photo Portfolio — Create a PDF photo book or portfolio from multiple images
  • Insurance Claims — Bundle damage photos into one PDF for submission
  • Real Estate Listings — Combine property photos into a downloadable PDF brochure
  • Medical Records — Assemble scanned medical documents into a single patient file
  • ID Document Bundles — Combine front/back scans of IDs into one PDF

Key Options

ParameterDescription
page_sizeA4, Letter, Legal, A3, A5, or original
orientationportrait or landscape
fit_modefit (default), fill, stretch, original
marginPadding in points (0–200)
outputurl (default), base64, both, file

Limits

  • Max 100 images per request

Example Usage

curl -X POST https://pdfapihub.com/api/v1/convert/image/pdf \
  -H "CLIENT-API-KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "image_urls": ["https://pdfapihub.com/sample.jpg", "https://pdfapihub.com/sample-invoicepage.png"],
    "page_size": "A4",
    "orientation": "portrait",
    "fit_mode": "fit",
    "margin": 36,
    "output": "url"
  }'

Comments

Loading comments...