Sort Score
Result 10 results
Languages All
Labels All
Results 1,101 - 1,110 of 3,694 for

edit

(0.1 sec)
  1. 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 getImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources 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, DOCX,...

    docs.groupdocs.com/metadata/java/extracting-com...
  2. Generating page preview for WordProcessing docu...

    This article describes how to generate a preview for any page for the existing WordProcessing document in SVG format using the GroupDocs.Editor.../ Developer Guide / Edit document / Edit Word document / Generating...actually editing it. This preview cannot be edited by the GroupDocs...

    docs.groupdocs.com/editor/net/generating-page-p...
  3. How to Run Examples | Documentation

    This section decsribes how to get started with GroupDocs.Merger for Java library...you can fork the repository, edit the source code and create a...

    docs.groupdocs.com/merger/java/how-to-run-examp...
  4. 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....You are welcome to view and edit metadata of PDF, DOC, DOCX,...

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

    docs.groupdocs.com/metadata/java/getting-known-...
  6. 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 JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iedit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  7. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....You are welcome to view and edit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/java/get-document-i...
  8. How to Run Examples | Documentation

    Download from GitHub The complete examples package of GroupDocs.Assembly is hosted on Github. You can either download the ZIP file from here or clone the repository of Github using your favorite Github client. In case you download the ZIP file, extract the folders on your local disk. The extracted files and folders will look like following image: In extracted files and folders, you can see solution file for C# Project....you can fork the repository, edit the code sample and create a...

    docs.groupdocs.com/assembly/net/how-to-run-exam...
  9. XML Viewer using Java | Render XML as PDF using...

    View XML files as PDF using Java. Learn how to render XML files within your own XML viewer Java application using GroupDocs API....Viewer JSON Viewer using Java Edit XML Files using Java Generate...

    blog.groupdocs.com/viewer/xml-viewer-using-java/
  10. How to Run | Documentation

    How to run examples....you can fork the repository, edit the code example and create...

    docs.groupdocs.com/metadata/python-net/how-to-r...