Sort Score
Result 10 results
Languages All
Labels All
Results 461 - 470 of 1,106 for

view file

(0.05 sec)
  1. 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...
  2. 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...
  3. Clone Passwords and Style Settings are Introduc...

    GroupDocs team is glad to announce another monthly release of .NET Document Comparison API v17.7.0 with advanced features like Cloning passwords and Cloning Metadata for all major File formats and adding support for new style settings. This monthly release is also including improvements like IComparisonStyle interface in cells File format along with fixes. Major Changes are done for HTML, PDF, Cells, Emails and Words document formats. Detailed information is listed below....Cloning Metadata for all major file formats and adding support for...IComparisonStyle interface in cells file format along with fixes . Major...

    blog.groupdocs.com/comparison/document.comparis...
  4. Convert PDF to HTML programmatically using C#

    Let's convert a PDF document to HTML using a few lines of code. Automate PDF conversion within .NET application to convert whole document or selected pages....Tiếng Việt 中文 中國傳統的 PDF is a file format that is used to present...operating system used to create or view them. However, PDFs are not...

    blog.groupdocs.com/conversion/convert-a-pdf-doc...
  5. 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...
  6. 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...
  7. Working with ZIP archives | Documentation

    Get ZIP format metadata The API allows detecting ZIP archives and reading format metadata. The following steps are needed to be followed: Load a ZIP archive Get the root metadata package Extract the native metadata package using the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived Files The following code snippet shows how to get metadata from a ZIP archive. advanced_usage.managing_metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...information about the archived files The following code snippet shows...getTotalEntries ()); for ( ZipFile file : root . getZipPackage (). getFiles...

    docs.groupdocs.com/metadata/java/working-with-z...
  8. Updating metadata | Documentation

    The Example in this article demonstrates how to update metadata properties using a combination of criteria... a file to be updated Specify a predicate...AddDays (- 3 ); foreach ( string file in Directory . GetFiles ( Constants...

    docs.groupdocs.com/metadata/net/updating-metadata/
  9. Load from a stream | Documentation

    This example demonstrates how to load a File from a stream. advanced_usage.loading_Files.LoadFromStream JavaScript try { const FileStream = fs.createReadStream("input.one") const metadata = new groupdocs.metadata.Metadata(FileStream); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:.../ Advanced Usage / Loading files / Load from a stream Load from...load a file from a stream. advanced_usage.loading_files.LoadFromStream...

    docs.groupdocs.com/metadata/nodejs-java/load-fr...
  10. Adding metadata | Documentation

    This article shows how to add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Java search engine...AddingMetadata File folder = new File ( Constants . InputPath...InputPath ); for ( File file : folder . listFiles ()) { try ( Metadata...

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