This article shows how to add Metadata signature to the each document type meta layer with different data types over with GroupDocs.Signature...Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
This article describes capabilities of GroupDocs.Editor while working with HTML resources, which are an integral part of HTML document...Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
This article explains how to save an edited document in HTML form to a folder on local disk using GroupDocs.Editor for Node.js via Java features....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution 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:...Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution 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....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution 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:...Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
This topic describes how to use the GroupDocs.Viewer Java API to convert Lotus Notes database files (NSF) to HTML, PDF, PNG, and JPEG formats....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
The Page describes how to remove all or Specific annotation replies when collaborate over document using GroupDocs.Annotation for Java API....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution 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 DicomRootPackage.DicomPackage Read the DICOM metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Dicom.DicomReadNativeMetadataProperties
using (Metadata metadata = new Metadata(Constants.InputDicom)) { var root = metadata.GetRootPackage(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocated); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFound); Console.WriteLine(root.DicomPackage.HeaderOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // ....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
This article shows that how Java redaction API allows to redact data of sensitive or private nature from your XLS, XLSX, ODS spreadsheet document formats and others....Search Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...