Is is possible to remove or hide a layer from a PDF using ABCPdf or another framework?
相关问题
- Correctly parse PDF paragraphs with Python
- Set BaseUrl of an existing Pdf Document
- How can I get all text from a PDF in Swift?
- Renaming named destinations in PDF files
- Write multiple lines of text in a flow with report
相关文章
- Render embedded image in PDF using Flying-Saucer f
- Python Sendgrid send email with PDF attachment fil
- C# MVC website PDF file in stored in byte array, d
- Generating .afm from .ttf [closed]
- How To Programmatically Enable/Disable 'Displa
- How to reduce PDF file size programmatically in Ja
- Search and replace placeholder text in PDF with Py
- How to convert PDF version 1.5 to version 1.4 in P
ABCpdf contains an Example project called OCGLayers. This project shows you how to identify and redact all the items in a layer.
For example:
The following C# example shows how layer 2 of page 1 can be deleted:
Or perhaps you were looking for the Flatten() function?