PDF to Image

v1.0.0

Convert PDF pages to images (PNG, JPG, or WebP). Supports DPI control, resize, background color, and page selection.

0· 74·1 current·1 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/pdf-to-image.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "PDF to Image" (rishabhdugar/pdf-to-image) from ClawHub.
Skill page: https://clawhub.ai/rishabhdugar/pdf-to-image
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 pdf-to-image

ClawHub CLI

Package manager switcher

npx clawhub@latest install pdf-to-image
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
medium confidence
Purpose & Capability
Name/description match the instructions and skill.json: the skill calls https://pdfapihub.com/api/v1/convert/pdf/image to convert PDF pages to images. No unrelated binaries, credentials, or platform components are requested.
Instruction Scope
SKILL.md instructs posting PDFs (by URL, base64, or multipart) to pdfapihub.com and sending an API key in the CLIENT-API-KEY header. That stays within the described conversion purpose, but it means user content (PDFs) and an API key are transmitted to an external service — a privacy/security consideration.
Install Mechanism
Instruction-only skill with no install spec or code files. Lowest-risk install posture (nothing is written to disk by the skill itself).
Credentials
The skill requires an API key (skill.json marks auth required and SKILL.md shows sending CLIENT-API-KEY), but the registry metadata lists no required env vars/credentials. This is a minor metadata mismatch: the service needs an API key but the skill manifest doesn't declare how it expects the agent to provide it (env var, config store, or runtime prompt).
Persistence & Privilege
always:false and no install actions. The skill does not request persistent or elevated privileges and does not modify other skills or system settings.
Assessment
This skill appears to do what it says: call pdfapihub.com to convert PDFs to images. Before installing, consider: (1) Privacy — PDFs you convert (possibly containing sensitive data) will be uploaded to a third‑party service; check pdfapihub.com's privacy policy and retention rules. (2) API key handling — the skill expects a CLIENT-API-KEY but the registry metadata doesn't declare how you'll supply it; confirm how your agent will store/provide the key securely. (3) Trustworthiness/provenance — source and homepage are missing; if you need guarantees, validate the service independently (domain, documentation, reputation). (4) Alternatives — if you must keep documents local, use a local tool (poppler/muPDF/ImageMagick) instead of an online API. If any of these are unacceptable, do not install or use the skill until you verify the provider and key storage.

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

latestvk978e3s5t2qd3thcat3r4mvses850jfy
74downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

PDF to Image

What It Does

Renders selected pages of a PDF as images in PNG, JPG, or WebP format. Supports DPI control, resize dimensions, background color fill, and multiple output modes.

When to Use

  • Generate thumbnail previews of PDF pages
  • Convert PDF pages to images for social media (OG images)
  • Create high-DPI images for print
  • Extract specific pages as images

Required Inputs

Provide one of:

  • url — public URL to a PDF
  • file — base64-encoded PDF
  • Multipart upload with file field

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

  • PDF Thumbnails — Generate preview thumbnails for document management systems
  • Social Media Previews — Create OG images (1200×630) from the first page of a PDF
  • E-commerce Product Sheets — Convert product PDF spec sheets into gallery images
  • Document Previews — Show image previews of PDFs in web apps without embedding a PDF viewer
  • Print-Ready Exports — Export PDF pages as high-DPI images for print workflows
  • Slide Extraction — Extract individual slides from PDF presentations as images

Key Options

ParameterDescription
page / pagesSingle page or range (e.g. "1-5")
image_formatpng (default), jpg, webp
dpi72–300 (default 150)
width / heightResize output dimensions
background_colorFill transparent areas (hex)
outputurl, base64, both, file

Limits

  • Max 100 pages per request
  • DPI range: 72–300
  • Max resize dimension: 10000 px

Example Usage

curl -X POST https://pdfapihub.com/api/v1/convert/pdf/image \
  -H "CLIENT-API-KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://pdfapihub.com/sample-pdfapi-intro.pdf",
    "pages": "1-3",
    "image_format": "jpg",
    "dpi": 200,
    "output": "url"
  }'

Comments

Loading comments...