Sort Score
Result 10 results
Languages All
Labels All
Results 501 - 510 of 1,073 for

view file

(0.06 sec)
  1. 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....spreadsheets, presentations, PDF files, web pages, email messages,...process and customize the output files. For example, you can protect...

    docs.groupdocs.com/viewer/java/
  2. Install GroupDocs.Viewer for Java | Documentation

    This topic describes how to install GroupDocs.Viewer for Java....can find the public key in the file. Learn more about verifying...Artifact Repository to your pom.xml file: pom.xml <repositories> <repository>...

    docs.groupdocs.com/viewer/java/installation/
  3. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP File headers. The following are the steps to read the header of a BMP File. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...format-specific information from BMP file headers. The following are the...to read the header of a BMP file. a BMP image Get the root metadata...

    docs.groupdocs.com/metadata/net/working-with-bm...
  4. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP File headers. The following are the steps to read the header of a BMP File. Load a BMP image Get the root metadata package Extract the native metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...format-specific information from BMP file headers. The following are the...to read the header of a BMP file. a BMP image Get the root metadata...

    docs.groupdocs.com/metadata/java/working-with-b...
  5. Traverse a whole metadata tree | Documentation

    This article explains that the GroupDocs.Metadata for Java represents any loaded File as a tree consisting of metadata properties and nested metadata packages. You can easily iterate through the metadata tree...Metadata represents any loaded file as a tree consisting of metadata...using the code snippet below: a file to examine Obtain the instance...

    docs.groupdocs.com/metadata/java/traverse-a-who...
  6. 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....and extract some additional file format information. a GIF image...package Use the property to obtain file format information AdvancedUsage...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Releasing GroupDocs.Metadata for .NET - Control...

    We are happy to release GroupDocs.Metadata for .NET API to work with metadata associated with various document and image formats. The API facilitates the user with simple syntax, easy to use methods and few lines of code to perform metadata operations. It provides the support of many popular document and image formats and the number is going to increase in next release. Why GroupDocs.Metadata Is Developed? Metadata is structured information that is used to contain important business information of different resources....operation (i-e view, add, modify, remove) for a number of file formats...formats. API gets the file as an input and makes its metadata accessible...

    blog.groupdocs.com/metadata/control-and-process...
  8. Extracting metadata | Documentation

    Using the GroupDocs.Metadata search engine you can extract desired metadata properties from Files of different types. You don’t need to worry about the exact File format and metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used metadata properties are marked with tags that allow searching them across all supported Files in various metadata packages. All tags defined in GroupDocs....desired metadata properties from files of different types. You don’t...need to worry about the exact file format and metadata standards...

    docs.groupdocs.com/metadata/python-net/extracti...
  9. Extracting metadata | Documentation

    This article shows how to extract metadata properties from your Files in C# .NET solution programmatically with GroupDocs.Metadata for .NET...DOC, PPT, XLS and many other files of different types in your ...Metadata for .NET supports many file formats. See full list at article...

    docs.groupdocs.com/metadata/net/extracting-meta...
  10. Render to PDF | Documentation

    Rendering Files to PDF with GroupDocs.Viewer for Node.js via Java. It means that you can embed PDF in websites or applications by using this Java API... To render files to PDF, follow these steps:...a path to save the rendered file. Call the method of the object...

    docs.groupdocs.com/viewer/nodejs-java/rendering...