Sort Score
Result 10 results
Languages All
Labels All
Results 691 - 700 of 2,810 for

view

(0.18 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 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...
  2. 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...
  3. 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...
  4. 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...
  5. Developers Guide - Web Report Generator | Docum...

    Execution Steps Inputs A Template created in one of the Supported Document Formats conforming to Supported Template Syntax. A Connection String in order to connect to a DataBase that can be accessed through DataSet / DataTable etc Type of Data Source. For example, Table / Views etc Data Source. Select a table / View from the connected DataBase System Processing Verifies Template Document Format. Connects to MS SQL Server Database using connection string Tests Connection according to the provided connection string....Table / Views etc Data Source. Select a table / view from the...connected database. Populates all Views from connected database. Allows...

    docs.groupdocs.com/assembly/net/developers-guid...
  6. How to Render DOCX as HTML using C#

    Let's learn how to render DOCX as HTML using C# without installing extra tools. We will also provide code to create HTML with embedded resources from DOCX using C#....argument to its constructor Get the view options using HtmlViewOptions...ForEmbeddedResources method Call the Viewer.View method with HtmlViewOptions...

    kb.groupdocs.com/viewer/net/how-to-render-docx-...
  7. Significant trouble installing, and now using G...

    Significant trouble installing, and now using GroupDocs At first, attempting `pip install groupdocs-Viewer-net` was yielding an error that said no such file existed, despite me getting that command......0 MB view details) ` from the same PyPI...PngViewOptions("output_{0}.png") viewer.view(viewOptions) Below is the code...

    forum.groupdocs.com/t/significant-trouble-insta...
  8. Working with metadata in JPEG2000 images | Docu...

    Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 images. The following are the steps to read the JPEG2000 comments (pieces of metadata represented as strings with the length up to 64 kbytes). Load a JPEG2000 image Get the root metadata package Extract the native metadata package using Jpeg2000RootPackage.Jpeg2000Package Read the JPEG2000 comments AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReadComments using (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { var root = metadata.GetRootPackage(); if (root.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/net/working-with-me...
  9. GroupDocs.Viewer for Java | Documentation

    GroupDocs.Viewer for Java allows you to render documents in various formats as HTML, PDF, JPEG, and PNG files. You do not need to use third-party software to View files within your Java application....Resources DEMOS AND EXAMPLES View documents online Download examples...

    docs.groupdocs.com/viewer/java/
  10. Set image size limits | Documentation

    Control image size in PDF output: set width, height, or maximum dimensions.... view ( viewOptions ) Was this page...

    docs.groupdocs.com/viewer/python-net/set-image-...