Files
SnapOtter/apps/docs/ja/tools/pdf/compress-pdf.md
T
SnapOtterandGitHub 4963ab3bbd feat(docs-i18n): translate all documentation into 20 languages
All 181 docs markdown files translated into 20 languages (apps/docs/<locale>/**). Companion to the i18n code PR; admin-merged because the file count exceeds GitHub's per-PR CI trigger limit. Validated by pnpm i18n:check (all surfaces, 0 stale/missing) and a clean all-locale docs build.
2026-07-11 13:52:47 +08:00

2.4 KiB

description, i18n_source_hash, i18n_provenance, i18n_output_hash
description i18n_source_hash i18n_provenance i18n_output_hash
埋め込み画像を圧縮して PDF のファイルサイズを縮小します。 a8bb0baaca25 human 8d439dd1e107

Compress PDF

埋め込み画像をダウンサンプリングして PDF のファイルサイズを削減します。品質スライダーと目標ファイルサイズのどちらかを選択できます。

API Endpoint

POST /api/v1/tools/pdf/compress-pdf

PDF ファイルと JSON の settings フィールドを含む multipart フォームデータを受け付けます。

Parameters

Parameter Type Required Default Description
mode string No "quality" 圧縮モード: quality または targetSize
quality integer No 75 圧縮品質、1〜100(高いほど圧縮が弱い)。quality モードで使用
targetSizeKb number No - 目標ファイルサイズ(キロバイト単位)。targetSize モードで使用

Example Request

品質で圧縮する場合:

curl -X POST http://localhost:1349/api/v1/tools/pdf/compress-pdf \
  -H "Authorization: Bearer si_your-api-key" \
  -F "file=@document.pdf" \
  -F 'settings={"mode": "quality", "quality": 60}'

目標サイズまで圧縮する場合:

curl -X POST http://localhost:1349/api/v1/tools/pdf/compress-pdf \
  -H "Authorization: Bearer si_your-api-key" \
  -F "file=@document.pdf" \
  -F 'settings={"mode": "targetSize", "targetSizeKb": 500}'

Example Response

{
  "jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "downloadUrl": "/api/v1/download/a1b2c3d4-e5f6-7890-abcd-ef1234567890/document.pdf",
  "originalSize": 5200000,
  "processedSize": 1800000
}

Notes

  • quality モードでは、値を小さくするほどファイルは小さくなりますが、画像の劣化が大きくなります。
  • targetSize モードでは、二分探索によって要求サイズに収まる最高の DPI を見つけます。
  • 圧縮によってファイルが大きくなる場合は、元のバイト列がそのまま返されます。
  • テキストやベクターコンテンツは影響を受けません。埋め込みラスター画像のみがダウンサンプリングされます。