I use pdftk to compress a pdf using the following command line

pdftk file1.pdf output file2.pdf compress

It works as the weight of my file decreased.

Are there [options] to change the compression???

Or maybe other solutions to compress my file? It is heavy because some graphics have a lot of points. Is there a way to convert these graphs to jpg for instance and adapt the compression?

link|improve this question

From my experience, it depends what is inside your pdf. If it is a graph with many dots for instance, the best solution is to convert the graph to png and include this png into the pdf. – RockScience Jan 25 at 4:44
feedback

4 Answers

up vote 4 down vote accepted

I had the same problem and found two different solutions (see this thread for more details). Both reduced the size of my uncompressed PDF dramatically.

  • Pixelated (lossy):

    convert input.pdf -compress Zip output.pdf

  • Unpixelated (lossless, but may display slightly differently):

    gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf

Edit: I just discovered another option (for lossless compression), which avoids the nasty gs command. qpdf is a neat tool that converts PDFs (compression/decompression, encryption/decryption), and is much faster than the gs command:

qpdf --linearize input.pdf output.pdf
link|improve this answer
feedback

I didn't see a lot of reduction in file size using qpdf. The best way I found is after pdftk is done use ghostscript to convert pdf to postscript then back to pdf. in PHP you would use exec:

                $ps = $save_path.'/psfile.ps';
                exec('ps2ps2 ' . $pdf . ' ' . $ps);
                unlink($pdf);
                exec('ps2pdf ' .$ps . ' ' . $pdf);
                unlink($ps);

I used this a few minutes ago to take pdftk output from 490k to 71k.

link|improve this answer
feedback

this procedure works pretty well

pdf2ps large.pdf very_large.ps

ps2pdf very_large.ps small.pdf

give it a try.

link|improve this answer
feedback

I had the same issue and I used this function to compress individual pages which results in the file size being compressed by upto 1/3 of the original size.

for (int i = 1; i <= theDoc.PageCount; i++)
{
       theDoc.PageNumber = i;
       theDoc.Flatten();
}
link|improve this answer
are you using the C++ library of pdftk? – RockScience Apr 18 at 4:49
I used ABCPDF as my library. – Gabbar Apr 18 at 11:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.