Sort Score
Result 10 results
Languages All
Labels All
Results 421 - 430 of 792 for

extract page

(0.05 sec)
  1. Password-protected documents | Documentation

    GroupDocs.Parser provides the functionality to open the password-protected documents. The following are the steps to work with password protected documents. Instantiate the LoadOptions object; Set password in LoadOptions(String) constructor; Create Parser object and call any method. The following code sample shows how to process password protected documents. try { String password = "123456"; // Create an instance of Parser class with the password: try (Parser parser = new Parser(Constants.SamplePassword, new LoadOptions(password))) { // Check if text Extraction is supported if (!...password ))) { // Check if text extraction is supported if (! parser...System . out . println ( "Text extraction isn't supported." ); return...

    docs.groupdocs.com/parser/java/password-protect...
  2. Password-protected documents | Documentation

    Learn how to open the password-protected documents....password ))) { // Check if text extraction is supported if (! parser...Console . WriteLine ( "Text extraction isn't supported." ); return...

    docs.groupdocs.com/parser/net/password-protecte...
  3. GroupDocs.Metadata for Node.js overview | Docum...

    Develop Applications to Create, View, Access, Update, Delete, Search, Compare, Replace & Export Metadata of Popular Documents & Image Formats....overview Leave feedback On this page GroupDocs.Metadata for Node...documents to extract user comments, form fields, hidden pages, etc Work...

    docs.groupdocs.com/metadata/nodejs-java/product...
  4. Supported Document Types | Documentation

    This section describes GroupDocs.Merger for Java supported document types...Split Extract pages Move page Remove pages Swap pages Change...Change page orientation Rotate pages Import document Cross-format merge...

    docs.groupdocs.com/merger/java/supported-docume...
  5. GroupDocs.Metadata Overview | Documentation

    What is GroupDocs.Metadata? GroupDocs.Metadata for Java is a full featured class library which allows users to read and edit metadata associated with various document, image, audio, video and many other formats. It works with most notable metadata standards: XMP, EXIF, IPTC, Image Resource Blocks, ID3 and format-specific metadata properties. The Metadata API is very flexible and easy to operate with. It provides extended capabilities allowing working with metadata in a unified way regardless of the file format....documents to extract user comments, form fields, hidden pages, etc Work... saved emails, etc Was this page helpful? Not really Yes, thanks...

    docs.groupdocs.com/metadata/java/groupdocs-meta...
  6. GroupDocs.Viewer for .NET overview | Documentation

    GroupDocs.Viewer for .NET allows you to render documents in various formats as HTML, PDF, JPEG, and PNG files. You do not need to use third-party software to view files within your .NET application....overview Leave feedback On this page GroupDocs.Viewer for .NET is...entire document or specific pages. Embed all external resources...

    docs.groupdocs.com/viewer/net/product-overview/
  7. Remove Pages from PDF using C# | Even, Odd, Lis...

    Remove any set of Pages from the PDF files using C#. Delete list of Pages, any given range, even or odd Pages from PDF files within .NET application....obsolete, highly confidential pages from the documents while sharing...programmatically remove such pages from the PDF document using...

    blog.groupdocs.com/merger/delete-pages-from-pdf...
  8. Loading specific file formats | Documentation

    In some cases it’s required to specify the document format manually to guarantee correct output produced by GroupDocs.Parser. The following are the cases when the document format must be specified manually: Markdown documents MHTML documents OTP documents (OpenDocument Presentation Template) Databases Emails from remote servers Here are the steps to specify the document format for Markup document. Instantiate the LoadOptions object and pass the document format in LoadOptions(FileFormat) constructor; Create Parser object and call any method....Markup ))) { // Check if text extraction is supported if (! parser...System . out . println ( "Text extraction isn't supported." ); return...

    docs.groupdocs.com/parser/java/loading-specific...
  9. Generate previews | Documentation

    This article provides learning contents about how to generate Page previews of documents in .NET using GroupDocs.Parser for Java API...functionality to generate document page previews by method: void generatePreview...the steps to generate document page previews: Prepare object; Instantiate...

    docs.groupdocs.com/parser/java/generate-previews/
  10. Getting known property descriptors | Documentation

    This code snippet demonstrates how to Extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the Extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....snippet demonstrates how to extract information about known properties...package Iterate through the extracted descriptors advanced_usage...

    docs.groupdocs.com/metadata/java/getting-known-...