Sort Score
Result 10 results
Languages All
Labels All
Results 641 - 650 of 1,811 for

view

(0.03 sec)
  1. 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...

    docs.groupdocs.com/metadata/python-net/get-docu...
  2. 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:... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/net/extracting-comm...
  3. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. Set image size limits | Documentation

    This article shows how to set image size limits when rendering image to PNG or JPEG... view ( viewOptions ); } Was this...

    docs.groupdocs.com/viewer/java/set-image-size-l...
  5. Uploading a Document to GroupDocs

    You’ve got a GroupDocs account and now what? This blog post is the first in a short series that walks you through how to use GroupDocs. In the coming weeks, well explain how to: use GroupDocs Signature, share documents with your colleagues, convert images to use as thumbnails, and assemble a document. But first, we’ll explain how to upload a file. That’s the first and most basic task that you can perform once you’ve logged in....From the Task menu, you can: View your document . GroupDocs Viewer...

    blog.groupdocs.com/total/uploading-a-document-t...
  6. Support of Emails format and Cloning Document M...

    GroupDocs team is excited to publish another monthly release of GroupDocs.Comparison for .NET 17.6.0 API with new features like adding support for Emails format and Settings for Cloning Document Metadata. This monthly release is also adding improvements like enhanced Cells & HTML Comparison Performance and Improved Summary Pages information along with fixes. Major Changes are done for HTML, Cells, Emails and Words document formats. Detailed information is listed below. Please Click here to download the latest API.... view the website #...

    blog.groupdocs.com/comparison/groupdocs.compari...
  7. Rearrange Pages in Word using C# | Organize DOC...

    Reorder the pages of Word files using C#. The running example shows how to change the order of pages in DOC/DOCX files using the .NET API....Protect/UnProtect Word Files with Password View Word Documents as HTML Responsive...

    blog.groupdocs.com/merger/move-word-pages-using...
  8. Features overview | Documentation

    With GroupDocs.Viewer for Node.js you can render files to HTML, PNG, JPEG and PDF formats, list and save attachments, embedded files and compressed files, and extract document text....copy or search; You want to view document pages separately; Zooming...(described below). You want to view document pages separately; You...

    docs.groupdocs.com/viewer/nodejs-java/features-...
  9. Features overview | Documentation

    With GroupDocs.Viewer for Java you can render files to HTML, PNG, JPEG and PDF formats, list and save attachments, embedded files and compressed files, and extract document text....copy or search; You want to view document pages separately; Zooming...(described below). You want to view document pages separately; You...

    docs.groupdocs.com/viewer/java/features-overview/
  10. Clean metadata | Documentation

    Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/clean-metadata/