Reduce PDF file size
This topic is about reducing pdf file size using ghostscript in linux.
sudo apt update
sudo apt install ghostscriptgs -sDEVICE=pdfwrite \
-dCompatibilityLevel=1.4 \
-dDownsampleColorImages=true \
-dColorImageDownsampleType=/Bicubic \
-dColorImageResolution=150 \
-dNOPAUSE -dQUIET -dBATCH \
-sOutputFile=output.pdf input.pdfLast updated