π¦ ClawHub
Image to PDF
by @rishabhdugar
Combine one or more images into a single PDF document with page layout control (page size, orientation, fit mode, margin).
TERMINAL
clawhub install img-to-pdfπ About This Skill
name: image-to-pdf description: "Combine one or more images into a single PDF document with page layout control (page size, orientation, fit mode, margin)."
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
Required Inputs
Provide one of:image_url β single image URLimage_urls β array of image URLsimages_base64 β array of base64-encoded imagesfile field(s)Authentication
Send your API key in theCLIENT-API-KEY header.Get your free API key at https://pdfapihub.com. Full API documentation is available at https://pdfapihub.com/docs.
Use Cases
Key Options
| Parameter | Description | |-----------|-------------| |page_size | A4, Letter, Legal, A3, A5, or original |
| orientation | portrait or landscape |
| fit_mode | fit (default), fill, stretch, original |
| margin | Padding in points (0β200) |
| output | url (default), base64, both, file |Limits
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"
}'