// install PDFTK
$ sudo apt-get install pdftk

// compress pdf
$ pdftk source.pdf output destination.pdf compress

// convert PNG to PDF
$ convert *.png file.pdf

https://gist.github.com/agustibr/3800432