Frequently Asked Question

How to Flat annotations? (iOS)
Last Updated 11 months ago

This article shows how to flat all the annotations of a page and make them part of the pdf (uneditable).

You need a Premium license and you have to call this method:

/**
 * remove all annotations and display it as normal content on page.
 @return true or false
 */
PDFPage *page = [m_doc page:index];
[page flatAnnots];

Loading ...