Sort Score
Result 10 results
Languages All
Labels All
Results 441 - 450 of 2,227 for

xmp

(0.12 sec)
  1. Working with metadata in TIFF images | Document...

    Working with Xmp metadata GroupDocs.Metadata for .NET allows managing Xmp metadata in TIFF images. For more details please refer to the following guide: Working with Xmp metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF metadata section. Working with IPTC metadata GroupDocs.Metadata for .NET is also able to work with IPTC metadata in TIFF images....Leave feedback Working with XMP metadata GroupDocs.Metadata for...for .NET allows managing XMP metadata in TIFF images. For more...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. GroupDocs.Metadata.Standards Namespaces - Group...

    The namespace contains classes that allow users to work with different metadata standards....Xmp Namespaces GroupDocs.Metadata...Standards.Xmp The namespace provides functionality for XMP (Extensible...

    apireference.groupdocs.com/metadata/net/groupdo...
  3. 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 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....getHeight ()); } Working with XMP Metadata GroupDocs.Metadata for...for Java also allows managing XMP metadata in GIF files. For more...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. XmpMetadataContainer Class - GroupDocs.Metadata...

    Represents a container for Xmp metadata properties....Xmp Namespaces GroupDocs.Metadata.Standards.Xmp XmpMetadataContainer...Class Represents a container for XMP metadata properties. Inheritance...

    apireference.groupdocs.com/metadata/net/groupdo...
  5. GroupDocs.Metadata.Exceptions | GroupDocs.Metad...

    The namespace contains some specific exceptions that are thrown by the library during file reading and updating....exception that is thrown when XMP has invalid structure. GroupDocs...

    reference.groupdocs.com/metadata/net/groupdocs....
  6. GroupDocs.Metadata

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....latest version allows you to edit XMP metadata of WAV file format and...formats. A bug related to removing XMP metadata in TIF file format is...

    blog.groupdocs.com/tag/groupdocs.metadata/page/2/
  7. exif data in Java

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....update, and remove the EXIF and XMP metadata of the HEIF/HEIC images...

    blog.groupdocs.com/tag/exif-data-in-java/
  8. exif data of heic in java

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....update, and remove the EXIF and XMP metadata of the HEIF/HEIC images...

    blog.groupdocs.com/tag/exif-data-of-heic-in-java/
  9. PdfMetadataSignature.TagPrefix Property - Group...

    The prefix tag of Pdf Metadata signature name. By default this property is set to...default this property is set to "xmp". Possible values are Namespace:...

    apireference.groupdocs.com/signature/net/groupd...
  10. Working with metadata in PNG images | Documenta...

    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....getTranslatedKeyword ()); } } } Working with XMP metadata GroupDocs.Metadata for...for Java allows managing XMP metadata in PNG images. For more...

    docs.groupdocs.com/metadata/java/working-with-m...