Sort Score
Result 10 results
Languages All
Labels All
Results 1,631 - 1,640 of 3,762 for

secure

(0.08 sec)
  1. Load document from URL | Documentation

    The page describes how to load PDF, Word, Excel, PowerPoint documents from URL using GroupDocs.Annotation for Java....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/annotation/java/load-documen...
  2. Get file info | Documentation

    This page describes how to detect document file type, size and calculate pages count when annotate documents or images with GroupDocs.Annotation....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/annotation/java/get-file-info/
  3. Render a Part of MS Project Document using Grou...

    Today, we are glad to announce the release of GroupDocs.Viewer for .NET 18.8. In this version, we have introduced the feature of rendering a part of MS Project document specifying the start date and end date. We have also made it possible to set ForcePasswordValidation property of the ViewerConfig using the configuration files such as app.config and web.config. Furthermore, the latest version also includes 14 improvements and bug fixes. Below is the list of new features, improvements, and fixes added in v18....improvements in the latest version: Security improvements Rendering comments...

    blog.groupdocs.com/viewer/render-a-part-of-ms-p...
  4. GroupDocs.Merger Product Family

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats.... There are different security levels that you can provide...

    blog.groupdocs.com/categories/groupdocs.merger-...
  5. HTML | Documentation

    This article explains that how to extract HTML formatted text from document page in Java....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/parser/java/html/
  6. Set image resolution | Documentation

    This topic describes how to set image resolution in PDF file using the GroupDocs.Viewer .NET API (C#)....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  7. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. 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....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/getting-known-...
  9. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....Us Contact Customers Legal Security Events Acquisition GroupDocs...

    docs.groupdocs.com/metadata/python-net/get-docu...
  10. Extracting Common Image Information | Documenta...

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/net/extracting-comm...