Imprimindo páginas de comentários somente com o Acrobat

1

Como imprimir apenas as páginas de comentários apenas no acrobat professional 7?

Encontrei uma sugestão em uma das páginas da web usar o javascript para extrair apenas as páginas de comentários, mas não consigo concluir o script.

- Use a JavaScript to scan the PDF "this.syncAnnotScan"
- Then make a variable (i.e. "a" ) equal to zero and then increment it one for every page in the doent.
- Make another variable (i.e. "b") equal to "this.getAnnots" using the first variable ( "a" ) as the "nPage:" value.
- Set an "IF" statement checking if the second value ( "b") is not NULL then use "this.print" using the first variable ( "a") as both the "nStart:" and "nEnd" parameters.
- Make sure that you have the preference set to print comments in the Acrobat Preferences.

Eu tentei, mas não consegui completar o script.

Por favor me ajude.

    
por Purushothaman 05.11.2014 / 08:30

1 resposta

1

Eu estava procurando uma solução para o mesmo problema (imprimindo somente páginas em PDF com anotações) e estou compartilhando o script aqui para que outras pessoas possam se beneficiar.

Salve o seguinte como printAnnotatedPages.js e coloque-o na subpasta Javascript da instalação do Adobe Acrobat:

// Print only pages with annotations in them
function printAnnotatedPages() {

    // Sync document annotations
    this.syncAnnotScan();

    // Check if printRange is available (Acrobat 11 or newer)
    var pagesRange = null;
    if (typeof app.formsVersion != "undefined" && app.formsVersion >= 11.0)
    {
        // Enable printRange
        pagesRange = [];
    }

    // Scan pages for annotations
    var startPage = -1;
    var new_set = false;
    for (var page = 0; page < this.numPages; page++)
    {
        // Check whether the current page has annotations
        var hasComments = this.getAnnots({nPage: page});
        if (hasComments != null) {
            // This page has annotations
            // Check whether this is a new set
            if (!new_set) {
                // Start new set of pages
                startPage = page;
                new_set = true
            }
        } else {
            // This page hasn't annotations
            // Print the set of pages (if any)
            if (new_set) {
                new_set = false;
                if (pagesRange != null) {
                    // Add set of pages to print list
                    pagesRange.push([startPage, (page-1)]);
                } else {
                    // Print this set (displays Print UI)
                    this.print({nStart: startPage, nEnd: (page-1)});
                }
            }
        }
    };

    // Final check
    if (pagesRange != null) {
        // Print the last set of pages (if any)
        if (new_set) {
            // Add the last set of pages to print list
            new_set = false;
            pagesRange.push([startPage, (page-1)]);
        }

        // Print using the range function
        if (pagesRange.length > 0) {
            var pp = this.getPrintParams();
            pp.interactive = pp.constants.interactionLevel.full;
            pp.printRange=pagesRange;
            this.print(pp); 
        } else {
            // No pages with annotations
            app.alert({nIcon: 1, cTitle: "Print annotated pages",
                cMsg: "There are no annotated pages in this document."});
        }   
    } else {
        // Print the last set (displays Print UI)
        if (new_set) {
            new_set = false;
            this.print({nStart: startPage, nEnd: (page-1)});
        }
    }
}

// Add menu item to the File menu
app.addMenuItem({ cName:"PrintAnnotatedPages", cUser:"Print pages with annotations...", cParent:"File",
          cExec:"printAnnotatedPages();", cEnable: "event.rc = (event.target != null);", nPos: 16 });

Isso adiciona um novo menu Imprimir páginas com anotações ... em Arquivo no Acrobat quando houver um documento aberto; Eu testei e funciona com v9 e DC com sucesso. Com versões anteriores a 11 - devido à API ausente - você deve confirmar a caixa de diálogo de impressão antes de cada grupo de páginas.

    
por virtualdj 20.02.2018 / 20:10