Some test text!

Search
Hamburger Icon

Web / Guides / Flatten

Flatten a PDF using JavaScript

Make sure you have Full API enabled in WebViewer.

To flatten a PDF using default settings.

async function main() {
  const doc = await PDFNet.PDFDoc.createFromURL(filename);
  const fl = await PDFNet.Flattener.create();
  await fl.process(doc, PDFNet.Flattener.Mode.e_fast);
}
PDFNet.runWithCleanup(main);

Compress & optimize PDF files
Full code sample which shows how to use 'pdftron.PDF.Flattener' by simplifying page content (e.g. flattening complex graphics into images) while maintaining vector text.

About PDF flattener (or mobile PDF optimizer)

PDF Flattener component (pdftron.PDF.Flattener) can be used to speed-up PDF rendering on mobile devices and on the Web.

PDF documents can frequently contain very complex page description (e.g. thousands of paths, different shadings, color spaces, blend modes, large images etc.) that may not be suitable for interactive viewing on mobile devices.

Flattener can be used to speed-up PDF rendering on mobile devices and on the Web by simplifying page content (e.g. flattening complex graphics into images) while maintaining vector text whenever possible.

Flattener can also be used to simplify process of writing custom converters from PDF to other formats. In this case, Flattener can be used as first step in the conversion pipeline to reduce any PDF to a very simple representation (e.g. vector text on top of a background image).

A quick way to try Flattener is by using DocPub CLI (e.g. docpub -f pdf my.pdf).

Get the answers you need: Chat with us