Sort Score
Result 10 results
Languages All
Labels All
Results 481 - 490 of 1,117 for

view file

(0.02 sec)
  1. Handling the APEv2 tag | Documentation

    This article explains how to handle APEv2 tag....track number, to digital audio files. The APEv1 tag was designed...Monkey’s Audio format. In MP3 files, the APE tag was originally...

    docs.groupdocs.com/metadata/java/handling-the-a...
  2. 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...
  3. Tags on GroupDocs Blog | Document Automation So...

    Tags on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Tags on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers API Change Dete......documents Compare DOCX compare text files compare two documents Comparison...Enterprise Comparison File Comparison File Diff Checker GroupDocs...

    blog.groupdocs.com/ko/tags/index.xml
  4. Latest topics - Free Support Forum - groupdocs.com

    Get FREE technical support for GroupDocs APIs from our developers using free support forum....Topic Replies Views Activity About annotation UI and Signature...22, 2025 List of supported files for GetText function in .NET...

    forum.groupdocs.com/latest
  5. 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...
  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 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...
  7. Adding metadata | Documentation

    This article shows how to add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Python via .NET search engine...AddingMetadata Python def run (): files = os . listdir ( constants .... input_path ) for file in files : with gm . Metadata ( constants...

    docs.groupdocs.com/metadata/python-net/adding-m...
  8. 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...
  9. Updating metadata | Documentation

    The Example in this article demonstrates that how to update metadata properties using a combination of criteria... Open a file to be updated Specify a predicate...Constants . inputPath ). forEach ( file => { var metadata = new groupdocs...

    docs.groupdocs.com/metadata/nodejs-java/updatin...
  10. Load from a local disk | Documentation

    The following example demonstrates how to load a File from a local disk. advanced_usage.loading_Files.LoadFromLocalDisk // Constants.InputOne is an absolute or relative path to your document. Ex: @"C:\Docs\source.one" try (Metadata metadata = new Metadata(Constants.InputOne)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for .NET examples GroupDocs.Metadata for Java examples.../ Advanced Usage / Loading files / Load from a local disk Load...load a file from a local disk. advanced_usage.loading_files.LoadFromLocalDisk...

    docs.groupdocs.com/metadata/java/load-from-a-lo...