Sort Score
Result 10 results
Languages All
Labels All
Results 571 - 580 of 1,811 for

view

(0.02 sec)
  1. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat JavaScript try { var loadOptions = new LoadOptions(FileFormat.Spreadsheet); const metadata = new groupdocs.metadata.Metadata("input.xls", loadOptions); var root = metadata.getRootPackageGeneric(); } 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:... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/nodejs-java/load-a-...
  2. Load from a stream | Documentation

    This example demonstrates how to load a file from a stream. advanced_usage.loading_files.LoadFromStream // Constants.InputDoc is an absolute or relative path to your document. Ex: @"C:\Docs\source.doc" try (InputStream stream = new FileInputStream(Constants.InputDoc)) { try (Metadata metadata = new Metadata(stream)) { // 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: GroupDocs.Metadata for .... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/load-from-a-st...
  3. Specify the JPEG image quality | Documentation

    Adjust JPEG images quality when rendering documents to PDF with GroupDocs.Viewer for Java... view ( viewOptions ); } Was this...

    docs.groupdocs.com/viewer/java/adjust-jpeg-imag...
  4. Reduce image quality | Documentation

    This topic describes how to compress images in PDF file using the GroupDocs.Viewer Java API.... view ( viewOptions ); } The following...

    docs.groupdocs.com/viewer/java/optimization-pdf...
  5. Add text watermarks | Documentation

    This article explains how to add text watermark when rendering documents with GroupDocs.Viewer within your JavaScript applications.... view ( viewOptions ) Was this page...

    docs.groupdocs.com/viewer/nodejs-java/add-text-...
  6. New release of MVC Front End for GroupDocs.Anno...

    Great news for ASP.NET Developers, GroupDocs proudly announces first release for GroupDocs.Annotation for .NET MVC Modern Front End. In this v1.0.0 we have used modern Template in ASP.NET MVC, which is simple, efficient and user friendly. GroupDocs users are free to customize and enhance the application by their own. [caption id=“attachment_11310” align=“alignnone” width=“640”] GroupDocs.Annotation for .NET Modern MVC FronEnd[/caption] Features in this Release GroupDocs.Annotation for .NET Modern Front End v1....load pdf document Ability to view annotations Ability to create...

    blog.groupdocs.com/annotation/groupdocs.annotat...
  7. Logging | Documentation

    Logging when rendering documents with GroupDocs.Viewer for Java... view ( viewOptions ); } The following...

    docs.groupdocs.com/viewer/java/logging/
  8. 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.... You are welcome to view and edit metadata of PDF, DOC...

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

    Working with XMP metadata GroupDocs.Metadata for .NET 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 .NET is also able to work with IPTC metadata in TIFF images.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. 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.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/get-supported-...