PDFファイルサイズの縮小


21

私はいくつかの写真を撮り、Omnigraffle(OSX)でそれらの巨大なPDFを作成しました。

次に、そのPDFを電子メールで送信する必要がありますが、すべての写真は5MBなので、ファイルは巨大です。ただし、高解像度の写真はメールで送信する必要はありません。

では、どのプログラムが私のPDFを取得し、すべての画像のサイズを低解像度に変更して保存しますか?

回答:


24

プレビューでPDFを開き、[ ファイル]» [ 名前付けて保存...]を選択し、[ファイルサイズを縮小]という名前のQuartzフィルターを選択します。

ここに画像の説明を入力してください


ColorSync Utilityを使用して、フィルターを微調整します。複製ファイルサイズ縮小し、後で設定を変更します。

最初にImage Samplingブロックからすべての値をクリアすることをお勧めします。ただし、Resolutionは、保存する量に応じて150〜300 DPI程度にする必要があります。

ここに画像の説明を入力してください


ColorSync Utilityはどこにありますか?
カルロ

1
@Karlo Utilitiesフォルダー。
ダニエルベック

11

Max GlenisterMilan Kupcevicヒントを得たBurgiのおかげで、サンプルスクリプトの説明:電子ブックフィルターを使用してPDFサイズをMassiveからSmallに縮小

brew install ghostscript # aptitude work too if you do not have brew

compresspdf() {
    echo 'Usage: compresspdf [input file] [output file] [screen|ebook|printer|prepress]'
    gs -sDEVICE=pdfwrite -dNOPAUSE -dQUIET -dBATCH -dPDFSETTINGS=/${3:-"screen"} -dCompatibilityLevel=1.4 -sOutputFile="$2" "$1"
}

compresspdf "Massive.pdf" "Small.pdf" ebook

Gsオプション:

-dPDFSETTINGS=/screen   (screen-view-only quality, 72 dpi images)
-dPDFSETTINGS=/ebook    (low quality, 150 dpi images)
-dPDFSETTINGS=/printer  (high quality, 300 dpi images)
-dPDFSETTINGS=/prepress (high quality, color preserving, 300 dpi imgs)
-dPDFSETTINGS=/default  (almost identical to /screen)

あなたのスクリプトが実際に何をしているのか明確にできますか?
ブルギ

電子ブックフィルターを使用してPDFサイズを大規模から小規模に縮小します
。–ミカエル

その情報を回答に含めることができますか?回答方法を参照して、ツアーに参加してください
ブルギ

私は自己説明可能なスクリプトを好みますが、あなたはそれが十分だとは思わないので、あなたが求めることは行われました。
ミカエル

1
ここでビット(および最高)それを説明する...
アブデルカリム・マテオスサンチェス

1

私はあなたがやりたいだろうプログラムを知りませんが、同じ結果を生成するための代替は、第1のグラフィックプログラムで画像を圧縮し、することですその後、文書にそれらを入れて、PDFに変換します。


0

@Mickaël、すばらしい解決策をありがとう

分割ページを制御するためのマイナーな改善を作成しました->デフォルトのアクション、およびツールのいくつかの例 -https://github.com/Elia-Sh/toolsAndUtils/blob/master/pdfSplit.sh

ファイルを保存します-

#!/bin/bash

# inspired by: 
#   /superuser/293856/reducing-pdf-file-size
#   https://www.ghostscript.com/doc/current/Use.htm#File_output

usage() {
    cat<<EOF
Usage:
    ${0} <input file> <output file> [screen|ebook|printer|prepress]

EOF
}
# Examples:
# Note: Ghostscript must be installed on your system
# Note that <n> represents the number of pages in the original document;

#     * Only split file to pages; no range available -
#         \$ ${0} someFile.pdf
#       will create the following single page files:
#         someFile_page_0001.pdf, someFile_page_0002.pdf someFile_page_0003.pdf, someFile_page_000<n>.pdf

#     * Split page to custom output file name -
#         \$ ${0} someFile.pdf newFileName_pageNumer_%2d.pdf
#       will create the following single page files:
#         newFileName_pageNumer_01.pdf, newFileName_pageNumer_02.pdf, newFileName_pageNumer_03.pdf, newFileName_pageNumer_0<n>.pdf

#     * Only reduce quality of pdf file !without! splitting -
#         \$ ${0} someFile.pdf newFileName.pdf ebook
#       will create the following single file: newFileName.pdf with reduced quality

#     * Reduce quality !and! split pdf to single pages -
#         \$ ${0} someFile.pdf newFileName_%2d.pdf ebook
#       will create the following single page files, with lower qualuty
#         newFileName_page_01.pdf, newFileName_page_02.pdf, newFileName_page_03.pdf, newFileName_page_0<n>.pdf

### main ###
DEFAULT_QUALITY="printer"
numberOfArguments=$#

case $numberOfArguments in
    1)
        # only split the file
        fileNameInput=$1
        fileNameOutput="${fileNameInput}_page_%04d.pdf"
        pdfSettings=$DEFAULT_QUALITY
        ;;
    2)
        # user supplied input and output files
        fileNameInput=$1
        fileNameOutput=$2
        pdfSettings=$DEFAULT_QUALITY
        ;;
    3)
        # user supplied input and output files
        fileNameInput=$1
        fileNameOutput=$2
        pdfSettings=$3
        ;;
    *)
    # incorrect syntax print usage and exit
        echo "Error: Illegal number of parameters."
        usage
        exit 1
    ;;
  esac

if [[ ! -f $fileNameInput ]]; then
    echo "Error: ${fileNameInput} not found!"
    exit 2
fi

if ! which gs > /dev/null 2>&1; then
    echo "Error: Looks like the Ghostscript package is not installed on your system."
    exit 3
fi

cmdToExecute="gs -sDEVICE=pdfwrite -dNOPAUSE -dQUIET -dBATCH \
    -dPDFSETTINGS=/$pdfSettings -dCompatibilityLevel=1.4 \
    -sOutputFile=$fileNameOutput $fileNameInput"

echo -e "Executing:\n    "$cmdToExecute

$cmdToExecute
# finish script with the return code from gs command
exit $?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.