Удалить или скрыть слой PDF с помощью ABCPdf?

Можно ли удалить или скрыть слой из PDF с помощью ABCPdf или другого фреймворка?

3 ответа

В следующем примере C# показано, как можно удалить слой 2 на странице 1:

Doc theDoc = new Doc();
theDoc.Read("source.pdf");
int thePages = theDoc.GetInfoInt(theDoc.Root, "Pages");
int thePage = theDoc.GetInfoInt(thePages, "Page 1");
int theLayer = theDoc.GetInfoInt(thePage, "Content 2");
theDoc.Delete(theLayer);

ABCpdf содержит пример проекта под названием OCGLayers. Этот проект показывает, как идентифицировать и редактировать все элементы в слое.

Например:

        Properties props = Properties.FromDoc(_doc, false);
        Page page = (Page)_doc.ObjectSoup[_doc.Page];
        Reader reader = Reader.FromPage(props, page);
        List<OptionalContent.Layer> layers = reader.GetLayers();
        foreach (OptionalContent.Layer layer in layers) {
            if (layer.Visible == false) {
                if (reader == null)
                    reader = Reader.FromPage(props, page);
                Reader.Redact(ref reader, layer);
            }
        }
        UpdateLayers();
        UpdatePreview();

Или, возможно, вы искали функцию Flatten()?

Другие вопросы по тегам