How to Reduce PDF file size
If you have a large size pdf file due to scanned document, you can reduce it using the tool called ps2pdf.
ps2pdf is available on linux based systems and its a part of ghostscript package.
Installation of a software
Redhat based systems
# yum install ghostscript
On Debian based systems
$ sudo apt-get install ghostscript
Compress PDF File In Linux
Once package is installed, run the command below.
$ ps2pdf old_file.pdf new_file.pdf
$ du -sh *.pdf
5M old_file.pdf
500K new_file.pdf
If you have a large size pdf file due to scanned document, you can reduce it using the tool called ps2pdf.
ps2pdf is available on linux based systems and its a part of ghostscript package.
Installation of a software
Redhat based systems
# yum install ghostscript
On Debian based systems
$ sudo apt-get install ghostscript
Compress PDF File In Linux
Once package is installed, run the command below.
$ ps2pdf old_file.pdf new_file.pdf
$ du -sh *.pdf
5M old_file.pdf
500K new_file.pdf
No comments:
Post a Comment