Sort Score
Result 10 results
Languages All
Labels All
Results 801 - 810 of 1,480 for

view document

(0.09 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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...formats / Documents / Working with metadata in PDF documents Working...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Implement thread-safe cache for GroupDocs.Viewe...

    This article explains how to make cache thread safe with GroupDocs.Viewer within your .NET applications....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...multiple users can simultaneously view the same file. The web application...

    docs.groupdocs.com/viewer/net/implement-thread-...
  3. Working with metadata in Diagrams | Documentation

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of diagrams such as VDX, VSDX, VSX, etc. For the full list of supported Document formats please refer to Supported Document formats. Detecting the exact type of a Document The following sample of code will help you to detect the exact type of a loaded diagram and extract some additional file format information. Load a PDF Document Extract the root metadata package Use the getDiagramType method to obtain file format information advanced_usage....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...metadata for specific formats / Documents / Working with metadata in...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. Add text watermarks | Documentation

    Add text watermarks to rendered Documents using GroupDocs.Viewer in your Python applications....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...Developer Guide / Render documents / Add text watermarks Add...

    docs.groupdocs.com/viewer/python-net/add-text-w...
  5. Adding metadata | Documentation

    This article shows how to add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Java search engine...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/adding-metadata/
  6. Introducing GroupDocs.Assembly for .NET | Docum...

    GroupDocs.Assembly for .NET is a Document automation and reports generation API designed to create custom Documents from templates. This .NET reporting API intelligently assembles the given data with the defined template Document and it is a report generator which generates an output Document based on the data source, in the template’s format as or in the specified output format. Since GroupDocs.Assembly for .NET can generate Documents based on a data source, essentially it serves two purposes: Document Automation and Report Generation....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...GroupDocs.Assembly for .NET is a document automation and reports generation...

    docs.groupdocs.com/assembly/net/introducing-gro...
  7. Working with ZIP archives | Documentation

    Get ZIP format metadata The API allows detecting ZIP archives and reading format metadata. The following steps are needed to be followed: Load a ZIP archive Get the root metadata package Extract the native metadata package using the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived files The following code snippet shows how to get metadata from a ZIP archive. advanced_usage.managing_metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-z...
  8. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.CadPackage property. The following code snippet reads metadata associated with a CAD file. AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputDxf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/net/working-with-ca...
  9. Working with metadata in AVI files | Documentation

    Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Remove annotations | Documentation

    This topic describes how to remove annotations from PDF file using the GroupDocs.Viewer Java API....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...Developer Guide / Render documents / Render to PDF / Optimize...

    docs.groupdocs.com/viewer/java/optimization-pdf...