TranslateProject/sources/tech/20200525 How to Compress PDF in Linux -GUI - Terminal.md
DarkSun 80833cef50 选题: 20200525 How to Compress PDF in Linux [GUI & Terminal]
sources/tech/20200525 How to Compress PDF in Linux -GUI - Terminal.md
2020-05-25 10:45:47 +08:00

5.5 KiB
Raw Blame History

How to Compress PDF in Linux [GUI & Terminal]

Brief: Learn how to reduce the size of a PDF file in Linux. Both command line and GUI methods have been discussed.

I was filling some application form and it asked to upload the necessary documents in PDF format. Not a big issue. I gathered all the scanned images and combined them in one PDF using gscan2pdf tool.

The problem came when I tried to upload this PDF file. The upload failed because it exceeded the maximum file size limit. This only meant that I needed to somehow reduce the size of the PDF file.

Now, you may use an online PDF compressing website but I dont trust them. A file with important documents uploading to an unknown server is not a good idea. You could never be sure that they dont keep a copy your uploaded PDF document.

This is the reason why I prefer compressing PDF files on my system rather than uploading it to some random server.

In this quick tutorial, Ill show you how to reduce the size of PDF files in Linux. Ill show both command line and GUI methods.

Method 1: Reduce PDF file size in Linux command line

You can use Ghostscript command line tool for compressing a PDF file. Most Linux distributions include the open source version of Ghostscript already. However, you can still try to install it just to make sure.

On Debian/Ubuntu based distributions, use the following command to install Ghostscript:

sudo apt install ghostscript

Now that you have made sure that Ghostscript is installed, you can use the following command to reduce the size of your PDF file:

gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=compressed_PDF_file.pdf input_PDF_file.pdf

In the above command, you should add the correct path of the input and out PDF file.

The command looks scary and confusing. I advise copying and pasting most of it. What you need to know is the dPDFSETTINGS parameter. This is what determines the compression level and thus the quality of your compressed PDF file.

dPDFSETTINGS Description
/prepress (default) Higher quality output (300 dpi) but bigger size
/ebook Medium quality output (150 dpi) with moderate output file size
/screen Lower quality output (72 dpi) but smallest possible output file size

Do keep in mind that some PDF files may not be compressed a lot or at all. Applying compression on some PDF files may even produce a file bigger than the original. There is not much you can do in such cases.

Method 2: Compress PDF files in Linux using GUI tool

I understand that not everyone is comfortable with command line tool. The PDF editors in Linux doesnt help much with compression. This is why we at Its FOSS worked on creating a GUI version of the Ghostscript command that you saw above.

Panos from Its FOSS team worked on creating a Python-Qt based GUI wrapper for the Ghostscript. The tool gives you a simple UI where you can select your input file, select a compression level and click on the compress button to compress the PDF file.

The compressed PDF file is saved in the same folder as the original PDF file. Your original PDF file remains untouched. The compressed file is renamed by appending -compressed to the original file name.

If you are not satisfied with the compression, you can choose another compression level and compress the file again.

You may find the source code of the PDF Compressor on our GitHub repository. To let you easily use the tool, we have packaged it in AppImage format. Please refer to this guide to know how to use AppImage.

Download PDF Compressor (AppImage)

Please keep in mind that the tool is in early stages of developments. You may experience some issues. If you do, please let us know in the comments or even better, file a bug here.

Well try to add more packages (Snap, Deb, PPAs etc) in the future releases. If you have experience with the development and packaging, please feel free to give us a hand.

Would you like Its FOSS team to work on creating more such small desktop tools in future? Your feedback and suggestions are welcome.


via: https://itsfoss.com/compress-pdf-linux/

作者:Abhishek Prakash 选题:lujun9972 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出