Sort Score
Result 10 results
Languages All
Labels All
Results 111 - 120 of 2,470 for

pdf editor

(0.07 sec)
  1. Working with metadata in PDF documents | Docume...

    Detecting the version of a Pdf document The following sample of code will help you to detect the Pdf version a loaded document and extract some additional file format information. Load a Pdf document Extract the root metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.Pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a Pdf document, please use the getDocumentProperties method defined in the DocumentRootPackage class....Editor Product Solution GroupDocs...metadata in PDF documents Working with metadata in PDF documents...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Working with metadata in PDF documents | Docume...

    Detecting the version of a Pdf document The following sample of code will help you to detect the Pdf version a loaded document and extract some additional file format information. Load a Pdf document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage<PdfRootPackage>(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a Pdf document, please use the DocumentProperties property defined in the DocumentRootPackage class....Editor Product Solution GroupDocs...metadata in PDF documents Working with metadata in PDF documents...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. Extract images from PDF documents | Documentation

    This article explains that how to extract images from Pdf documents...Editor Product Solution GroupDocs...data from PDF documents / Extract images from PDF documents Extract...

    docs.groupdocs.com/parser/net/extract-images-fr...
  4. Select specific pages for rasterized PDF | Docu...

    This article demonstrates that how you can specify starting page index (zero based) and the number of pages from this index to save a rasterized Pdf...Editor Product Solution GroupDocs...rasterized PDF Select specific pages for rasterized PDF Leave feedback...

    docs.groupdocs.com/redaction/python-net/select-...
  5. Add watermarks to PDF documents | Documentation

    The watermarking Java API allows you to add watermarks to Pdf documents. Adding watermarks to a particular page or adding watermarks on all images or attachments of a particular page is possible....Editor Product Solution GroupDocs...watermarks to PDF documents Add watermarks to PDF documents Leave...

    docs.groupdocs.com/watermark/java/add-watermark...
  6. Pdf Digitally signing | Documentation

    This article explains how to sign document with Digital electronic signatures using advanced options with GroupDocs.Signature API....Editor Product Solution GroupDocs...Electronic Signatures / ✎ Pdf digitally signing Pdf Digitally signing...

    docs.groupdocs.com/signature/net/sign-document-...
  7. Extract text from PDF documents | Documentation

    To extract a text from Pdf documents getText and getText(int) methods are used. These methods allow to extract a text from the entire document or a text from the selected page. Here are the steps to extract a text from Pdf document: Instantiate Parser object for the initial document; Call getText method and obtain TextReader object; Read a text from reader. Warning getText method returns null value if text extraction isn’t supported for the document....Editor Product Solution GroupDocs...Extract data from PDF documents / Extract text from PDF documents Extract...

    docs.groupdocs.com/parser/java/extract-text-fro...
  8. Save in rasterized PDF | Documentation

    The following example demonstrates how to save the document as a rasterized Pdf file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPdf(true); // Saving as rasterized Pdf with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...Editor Product Solution GroupDocs...Save in rasterized PDF Save in rasterized PDF Leave feedback The...

    docs.groupdocs.com/redaction/java/save-in-raste...
  9. Extract metadata from PDF documents | Documenta...

    To extract metadata from Pdf documents getMetadata method is used. This method allows to extract the following metadata: Name Description title The title of the presentation. subject The subject of the presentation. keywords The keyword of the presentation. author The name of the presentation’s author. application The name of the application. application-version The version number of the application that created the presentation. created-time The time of the presentation creation. last-saved-time The time of the the presentation when it was last saved....Editor Product Solution GroupDocs...data from PDF documents / Extract metadata from PDF documents...

    docs.groupdocs.com/parser/java/extract-metadata...
  10. How to add attachment to PDF document | Documen...

    This article explains how to add attachment to Pdf document with GroupDocs.Merger within your Java applications....Editor Product Solution GroupDocs...attachment to PDF document How to add attachment to PDF document Leave...

    docs.groupdocs.com/merger/java/how-to-add-attac...