Blog Post

Optimizing PDF File Size

Illustration: Optimizing PDF File Size

PDFs have a lot of tricks up their sleeves to make them quick to use and to help make the file size as small as possible. But these same tricks can also make PDFs grow big quickly. So in this article, I’m going to show you what causes this problem and how we counter it.

Incremental Saving

One really nice feature of PDFs is that you can incrementally save. This means that instead of rewriting an entire file when you save, only the changes are appended. The benefit of this is that it makes it really quick to save!

However, this also causes the file size to grow and grow and never get smaller. This is especially noticeable if you work with a lot of images. And even if you remove an image, it still is included in the PDF; you only instruct your PDF viewer to not show it again.

Sharing of Images and Fonts

Another nice feature of PDFs is that objects like fonts and images can be shared across pages — a feature that was specifically made in an effort to save on the size of files. This means you can have an image logo on each page and it is only included in the PDF file once.

While this is great when you add images and fonts, it can quickly become more complicated when you try to optimize the size of a PDF file. The image in the PDF doesn’t specify how often it is referenced in the PDF, which means that to properly clean it up, you have to go through the entire PDF. Which brings us to our main topic: garbage collection.

Garbage Collection

We want to enable our customers to make their PDF files as small as possible. And as a first step toward accomplishing this, we wanted to remove all indirect objects from the PDF.

So right before we start saving the document, we go through the entire PDF file and collect a list of all the reachable object numbers. Then, when saving the PDF, but before we write out an indirect object, we compare its objects number with the list we collected, and if the object isn’t included, we simply don’t write it out.

We don’t enable this by default, as the process can be a little slow (depending upon the size of your file), but we have options for iOS and Android.

An iOS Example

To demonstrate how you can enable this optimization, here is an example of how to resave with garbage collection on iOS:

do {
    try document.save(options: [.strategy(.rewriteAndOptimizeFileSize), .forceSaving]);
} catch {
    print("Could not save document: \(error)")
}
NSDictionary* saveOptions = @{PSPDFDocumentSaveOptionForceSaving: @YES,
                              PSPDFDocumentSaveOptionStrategy: @(PSPDFDocumentSaveStrategyRewriteAndOptimizeFileSize)};
[document saveWithOptions:saveOptions error:nil];

Conclusion

In this post, we shared how the PDF format helps keep file size down and how we can help it out by collecting unused objects. Depending on what kind of PDFs you work on, you might care a lot about file size, in which case our optimization for PDFs can really help you out!

Share Post
Free 60-Day Trial Try PSPDFKit in your app today.
Free Trial

Related Articles

Explore more
LEARNING  |  Company • Products • PDF

What Is PDF/A? A Guide to PDF/A and How to Convert to Any Type of PDF/A Programmatically

TUTORIAL  |  iOS • How To • PDF

How to Edit PDFs in an iOS Application Using a PDF Library

INSIGHTS  |  Company • Products • PDF

PDF SDK: Build vs. Buy