スキル一覧に戻る
dparedesi

merge-book-cover

by dparedesi

0🍴 0📅 2025年12月26日
GitHubで見るManusで実行

SKILL.md


name: merge-book-cover description: Merge a cover image into a PDF book while preserving aspect ratio and matching width. Use when the user wants to "merge cover", "combine pdf", "fix cover size", or "add cover image".

PDF Cover Merger

Merges a cover image (PNG/JPG) into an existing PDF book, ensuring the cover matches the book's page width exactly while preserving its aspect ratio.

Why? Solving the problem of misaligned or distorted cover pages when combining images with PDF documents programmatically.

Quick Start

  1. Ensure assets/cover.png exists.
  2. Ensure docs/Data-Science-with-Python.pdf exists.
  3. Run the script: python3 .agent/skills/merge-book-cover/scripts/merge_cover.py

Prerequisites

  • Python 3
  • Packages: img2pdf, pikepdf, Pillow

Workflow Steps

1. Install Dependencies

Ensure the required Python packages are installed.

python3 -m pip install img2pdf pikepdf Pillow

2. Verify Files

Ensure the source files are in place:

  • Cover Image: assets/cover.png
  • Book PDF: docs/Data-Science-with-Python.pdf

3. Run Merge Script

Execute the script to resize the cover and merge it.

python3 .agent/skills/merge-book-cover/scripts/merge_cover.py

[!TIP] The script automatically detects the width of the book's first page and scales the cover to match it perfectly, avoiding white margins or distortion.

4. Verify Output

Check the output file: docs/Data-Science-with-Python_FINAL.pdf.

Troubleshooting

ProblemCauseSolution
ModuleNotFoundErrorMissing Python packagesRun python3 -m pip install ...
FileNotFoundErrorMissing cover or book PDFcheck paths assets/cover.png and docs/...

| Aspect Ratio issues | N/A | Script auto-calculates height based on width. |

Quality Rules

  • Zero Distortion: The cover image must perfectly maintain its original aspect ratio.
  • Exact Width Match: The cover page width must exactly match the book's first page width (usually 612 pts for Letter).
  • No Margins: There should be no white bars or margins around the cover.
  • Automation: The process must run without manual image editing.

Testing & Evaluation

Manual Validation

  1. Run the script: python3 .agent/skills/merge-book-cover/scripts/merge_cover.py
  2. Open docs/Data-Science-with-Python_FINAL.pdf.
  3. Check 1: Is the cover (Page 1) flush with the edges? (No white border)
  4. Check 2: Does Page 2 (Title Page) have the exact same width as Page 1?
  5. Check 3: Is the cover image undistorted (circles are circular, text is proportional)?

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です