Sort Score
Result 10 results
Languages All
Labels All
Results 6,371 - 6,380 of 9,892 for

groupdocs.signature,

(0.13 sec)
  1. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:

    docs.groupdocs.com/metadata/java/load-a-passwor...
  2. Get supported file formats | Documentation

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable<FileType> supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.

    docs.groupdocs.com/metadata/java/get-supported-...
  3. Get the PDF output file information | Documenta...

    This article explains how to get the PDF output file information using Java with GroupDocs.Viewer for Java....This article explains how to get the PDF output file information using Java with GroupDocs.Viewer for Java.

    docs.groupdocs.com/viewer/java/get-pdf-output-f...
  4. Optimize a PDF file for a browser | Documentation

    This topic describes how to optimize PDF file using the GroupDocs.Viewer .NET API (C#) for web browser or to reduce size....This topic describes how to optimize PDF file using the GroupDocs.Viewer .NET API (C#) for web browser or to reduce size.

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  5. Subset fonts | Documentation

    This topic describes how to subset fonts in PDF file using the GroupDocs.Viewer .NET API (C#)....This topic describes how to subset fonts in PDF file using the GroupDocs.Viewer .NET API (C#).

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  6. Working with metadata in TIFF images | Document...

    Working with XMP metadata GroupDocs.Metadata for Java allows managing XMP metadata in TIFF images. For more details please refer to the following guide: Working with XMP Metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF Metadata section. Working with IPTC metadata GroupDocs.Metadata for Java is also able to work with IPTC metadata in TIFF images....Working with XMP metadata GroupDocs.Metadata for Java allows managing XMP metadata in TIFF images. For more details please refer to the following guide: Working with XMP Metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF Metadata section. Working with IPTC metadata GroupDocs.Metadata for Java is also able to work with IPTC metadata in TIFF images.

    docs.groupdocs.com/metadata/java/working-with-m...
  7. Working with metadata in WEBP images | Document...

    Working with XMP metadata GroupDocs.Metadata for Java allows managing XMP metadata in JPEG images. For more details please refer to the following guide: Working with XMP Metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in JPEG images. Please find appropriate code samples in the Working with EXIF Metadata section. More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Working with XMP metadata GroupDocs.Metadata for Java allows managing XMP metadata in JPEG images. For more details please refer to the following guide: Working with XMP Metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in JPEG images. Please find appropriate code samples in the Working with EXIF Metadata section. More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:

    docs.groupdocs.com/metadata/java/working-with-m...
  8. Reduce image quality | Documentation

    This topic describes how to compress images in PDF file using the GroupDocs.Viewer .NET API (C#)....This topic describes how to compress images in PDF file using the GroupDocs.Viewer .NET API (C#).

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  9. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument JavaScript try { var loadOptions = new LoadOptions(); loadOptions.setPassword("123"); const metadata = new groupdocs.metadata.Metadata("protected.docx", loadOptions); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument JavaScript try { var loadOptions = new LoadOptions(); loadOptions.setPassword("123"); const metadata = new groupdocs.metadata.Metadata("protected.docx", loadOptions); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:

    docs.groupdocs.com/metadata/nodejs-java/load-a-...
  10. Retrieve the document information | Documentation

    Retrieving information about a document with GroupDocs.Viewer for Python...Retrieving information about a document with GroupDocs.Viewer for Python

    docs.groupdocs.com/viewer/python-net/retrieving...