Sort Score
Result 10 results
Languages All
Labels All
Results 41 - 50 of 3,637 for

image metadata

(0.14 sec)
  1. Remove Metadata of Documents and Images using C#

    Remove selective Metadata or clean all Metadata properties using C# from DOCX, XLSX, PPTX, PDF, JPG/JPEG, PNG, WebP Images, email, eBooks, Visio, Zip files....entirely clean metadata of documents as well as images using C# ....available metadata properties from documents and images using Java...

    blog.groupdocs.com/metadata/remove-metadata-of-...
  2. Embed Custom Objects in Metadata Signature for ...

    Yes, GroupDocs.Signature for .NET now supports embedding custom objects as Metadata signature in the Images. So you can now sign the Images with your desired Metadata properties. We have introduced this feature in version 19.6 by adding a new public method AddSignature to the ImageMetadataSignOptions class. Not only this, but you can also apply the data encryption to the custom objects. So let’s check out how easy it is to sign an Image with custom Metadata signature....custom objects as metadata signature in the images. So you can now...now sign the images with your desired metadata properties. We...

    blog.groupdocs.com/signature/embed-custom-objec...
  3. Working with metadata in JPEG2000 images | Grou...

    Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 Images. The following are the steps to read the JPEG2000 comments (pieces of Metadata represented as strings with the length up to 64 kbytes). Load a JPEG2000 Image Get the root Metadata package Extract the native Metadata package using Jpeg2000RootPackage.Jpeg2000Package Read the JPEG2000 comments AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReadComments using (Metadata Metadata = new Metadata(Constants.InputJpeg2000)) { var root = Metadata.GetRootPackage(); if (root....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  4. Working with IPTC IIM metadata | GroupDocs

    Access, read, update, and remove IPTC IIM Metadata using GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/working-...
  5. Working with metadata in PNG images | GroupDocs

    Reading PNG Metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG Images. The following are the steps to read the native PNG Metadata. Load a PNG Image Get the root Metadata package Extract the native Metadata package using PngRootPackage.getPngPackage Read the PNG Metadata properties advanced_usage.managing_Metadata_for_specific_formats.Image.png.PngReadTextChunks try (Metadata Metadata = new Metadata(Constants.InputPng)) { PngRootPackage root = Metadata.getRootPackageGeneric(); for (PngTextChunk chunk : root.getPngPackage().getTextChunks()) { System.out.println(chunk.getKeyword()); System.out.println(chunk.getText()); if (chunk instanceof PngCompressedTextChunk) { PngCompressedTextChunk compressedChunk = (PngCompressedTextChunk) chunk; System....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. Working with metadata in GIF images | GroupDocs

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

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Adding metadata | GroupDocs

    This article shows how to add Metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Node.js via Java search engine...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/adding-...
  8. Improved Methods of Metadata Retrieval Introduc...

    We are pleased to announce another monthly release of GroupDocs.Metadata for .NET v16.12. The latest release involves a number of new features and enhancements including support for Open Document format, BMP and DjVu Image formats and improved methods for Metadata retrieval. Simply download the latest version and try out all the newly introduced features and enhancements. .NET Metadata API - New Features In version 16.12, we have introduced the following new features....Metadata for .NET v16.12 . The latest...and DjVu image formats and improved methods for metadata retrieval...

    blog.groupdocs.com/metadata/introducing-bmp-djv...
  9. Working with metadata in GIF images | GroupDocs

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

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Adding metadata | GroupDocs

    This article shows how to add Metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Java search engine...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

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