Sort Score
Result 10 results
Languages All
Labels All
Results 701 - 710 of 2,801 for

view

(0.13 sec)
  1. GroupDocs Viewer for Java Library - a J2EE & J2...

    We’re pleased to announce the release of the GroupDocs Viewer for Java Library! Java developers can now seamlessly use our web-based document Viewer within their Java development environment. Just like GroupDocs Viewer for .NET Library, this version can be easily embedded into customer platforms and allows developers to display over 40 document and image file formats without any external dependencies. Benefits of the GroupDocs Document Viewer for Java Library: Support for more than 40 file formats, including: Portable Document Format: .... Users can view documents from any desktop,...

    blog.groupdocs.com/viewer/announcing-groupdocs-...
  2. 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 getGifImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.gif.GifReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputGif)) { GifRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getGifImageType().getFileFormat()); System.out.println(root.getGifImageType().getVersion()); System.out.println(root.getGifImageType().getByteOrder()); System.out.println(root.getGifImageType().getMimeType()); System.out.println(root.getGifImageType().getExtension()); System.out.println(root.getGifImageType().getWidth()); System.out.println(root.getGifImageType().getHeight()); } Working with XMP Metadata GroupDocs.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/working-with-m...
  3. 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...
  4. 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...
  5. 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-...
  6. How to Convert DOCX to SVG using Java

    This article includes instructions on how to convert DOCX to SVG using Java, as well as sample code that illustrates the procedure to transform DOCX to SVG in Java.... When you need to view the document’s contents in a...

    kb.groupdocs.com/conversion/java/how-to-convert...
  7. Display PDF, Microsoft Office and 50+ Other Doc...

    Kentico is quite a popular CMS focused largely on document management. At GroupDocs we create APIs that allow developers to enhance their applications and sites with convenient document collaboration tools. One of such tools is a multi-format, cross-platform compatible document Viewer – GroupDocs.Viewer. It allows end users to View over 50 types of documents and images from any modern web-browser and without having to install any office software or plugins.... It allows end users to view over 50 types of documents and...

    blog.groupdocs.com/viewer/display-pdf-microsoft...
  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.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/getting-known-...
  9. 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...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. 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;iview and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/nodejs-java/getting...