Sort Score
Result 10 results
Languages All
Labels All
Results 221 - 230 of 30,838 for

groupdocs.metadata

(0.54 sec)
  1. Installation (manual) | GroupDocs

    Installation without build tools (manual JAR setup) If you don’t use Maven/Gradle/Ivy/SBT, you can add Groupdocs.metadata for Java to the classpath manually. 1) Download the JAR Go to the latest version of Groupdocs.metadata in the GroupDocs Java repository. Download Groupdocs.metadata-.jar. 2) Add the JAR to your project IntelliJ IDEA File → Project Structure → Modules → Dependencies. Click + → JARs or directories and select the downloaded JAR. Eclipse...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/installation-m...
  2. Working with MP3 metadata | GroupDocs

    Learn about managing metadata for MP3 formats....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-mp...
  3. Saving files | GroupDocs

    Groupdocs.metadata provides different ways to save a file with updated metadata. Please refer to the following guides to know more about all overloads of the save method:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/saving-files/
  4. How to Run | GroupDocs

    Download from GitHub The complete examples package of Groupdocs.metadata is hosted on Github. You can either download the ZIP file from here or clone the repository of Github using your favourite Github client. In case you download the ZIP file, extract the folders on your local disk. The extracted files and folders will look like the following image: Open IntelliJ Idea and import the project to get started with it....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/how-to-run-exa...
  5. Working with BMP metadata | GroupDocs

    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:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-bm...
  6. Working with BMP metadata | GroupDocs

    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:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-b...
  7. Working with DICOM metadata | GroupDocs

    Reading DICOM metadata properties The Groupdocs.metadata API supports extracting format-specific information from DICOM images. The following are the steps to read the native DICOM metadata. Load a DICOM image Get the root metadata package Extract the native metadata package using the DicomRootPackage.getDicomPackage method Read the DICOM metadata properties examples.advanced_usage.managing_metadata_for_specific_formats.image.dicom.DicomReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-d...
  8. Update on GroupDocs Blog | Document Automation ...

    Update on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Update on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers GroupDocs.M......NET & Java Developers GroupDocs.Metadata cho .NET 25.10 – Những...những tính năng mới trong GroupDocs.Metadata cho .NET 25.10. Hiện...

    blog.groupdocs.com/vi/tag/update/index.xml
  9. Update on GroupDocs Blog | Document Automation ...

    Update on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Update on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers GroupDocs.M......NET & Java Developers GroupDocs.Metadata for .NET 25.10 – 2025年10月...2025年10月 リリースハイライト GroupDocs.Metadata for .NET 25.10 の新機能をご覧ください。現在、NuGet...

    blog.groupdocs.com/ja/tag/update/index.xml
  10. Save a modified file to the original source | G...

    This article shows how to save the modified content to the underlying source....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/save-a-modified...