A4 To A3 Pdf

v1.0.0

将文件夹中的图片按顺序两两合并为A3横向PDF(两张A4左右并排)。触发词:合并PDF、合成A3、两张A4合成一页、图片转PDF。

0· 76·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wangchuang9523-gif/a4-to-a3-pdf.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "A4 To A3 Pdf" (wangchuang9523-gif/a4-to-a3-pdf) from ClawHub.
Skill page: https://clawhub.ai/wangchuang9523-gif/a4-to-a3-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 a4-to-a3-pdf

ClawHub CLI

Package manager switcher

npx clawhub@latest install a4-to-a3-pdf
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name, description, SKILL.md, and the included Python script all describe and implement the same functionality (pairwise merging of numbered images into A3 landscape PDF). Required dependency (Pillow) is appropriate and proportional. There are no unrelated credentials, binaries, or config paths requested.
Instruction Scope
Runtime instructions stay within the expected scope (read images from a specified folder, resize, and write a PDF). The SKILL.md and script are consistent overall, but the script's image-discovery logic is fragile: it only tests alternative extensions for the first image and iterates numeric filenames 1..999, so images not named in that numeric sequence (or starting at a number >1) may be ignored — this is a correctness/coverage issue rather than a security problem. There are no instructions to read unrelated files, environment variables, or to transmit data externally.
Install Mechanism
No install spec — instruction-only plus a local script. This is low-risk: nothing is downloaded or installed by the skill itself. The only runtime dependency is the standard Pillow library installed via pip, which is appropriate for image operations.
Credentials
The skill requires no environment variables, credentials, or config paths. Its access is limited to the folder you pass on the command line and the output path you choose, which matches its purpose.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent presence or modify other skills or system-wide settings. Autonomous invocation is allowed by platform default but not a special privilege here and does not combine with other red flags.
Assessment
This skill appears to do only local image-to-PDF work and is coherent with its description. Before using: (1) ensure you have Python 3 and an up-to-date Pillow package installed; (2) run it on folders you control — the script will read image files in the supplied folder and write the output PDF to the supplied path and may overwrite existing files with the same name; (3) note the script only looks for numerically named files starting at 1 and only checks alternative extensions for the first file, so rename or reindex your images if they don't follow that pattern; (4) as with any image-processing tool, avoid running it on untrusted or maliciously crafted images unless your imaging libraries are patched, since image libraries have historically had security vulnerabilities.

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

a3vk975x6s5wanm5frc4nfnwx1gf185agw9a4vk975x6s5wanm5frc4nfnwx1gf185agw9imagevk975x6s5wanm5frc4nfnwx1gf185agw9latestvk975x6s5wanm5frc4nfnwx1gf185agw9mergevk975x6s5wanm5frc4nfnwx1gf185agw9pdfvk975x6s5wanm5frc4nfnwx1gf185agw9
76downloads
0stars
1versions
Updated 6d ago
v1.0.0
MIT-0

A4 to A3 PDF Merger

将多张图片合并为 A3 横向 PDF,每页放置两张图片(左右并排)。

Usage

方法1:使用脚本(推荐)

python scripts/merge_a4_to_a3.py <图片文件夹> <输出PDF路径> [dpi]

示例:

python scripts/merge_a4_to_a3.py "C:\Users\ZERO\Desktop\质保书" "C:\Users\ZERO\Desktop\输出.pdf"

方法2:手动生成

如需自定义(如添加白边、调整尺寸),参考脚本逻辑自行修改。

Output Format

  • 页面尺寸:A3 横向(420mm × 297mm)
  • 每页:左右两张 A4 图片,无白边
  • 分辨率:默认 300 DPI
  • 图片按数字顺序排列(1.jpg, 2.jpg, ...)

Dependencies

  • Python 3.x
  • Pillow: python -c "from PIL import Image"python -m pip install Pillow

Comments

Loading comments...