Get technical support of GroupDocs.EdiTor for .NET and Java....13, 2024 GroupDocs Editor: Images are not loading csharp , dotnet...editing of variable fields of the pdf dotnet , csharp , document-editing...
Learn this article and check how To load and convert HTML documents with advanced options using GroupDocs.Conversion for Java API....Conversion Product Solution GroupDocs...GroupDocs.Conversion Product Family / GroupDocs.Conversion for Java...
The page describes how To detect document file type, size and calculate pages count when annotate documents or Images with GroupDocs.Annotation....Conversion Product Solution GroupDocs...information: is a document file type (PDF, Word document, Excel spreadsheet...
Retrieve a list of document attachments from your emails, Outlook data files, archives and Pdf documents with GroupDocs.Viewer for .NET...Conversion Product Solution GroupDocs...Outlook data files, archives, and PDF documents. C# using System ;...
Learn this article and check how To load and convert XML documents with advanced options using GroupDocs.Conversion for .NET API....Conversion Product Solution GroupDocs...GroupDocs.Conversion Product Family / GroupDocs.Conversion for .NET...
This page contains a description of all the properties of the IndexingOptions class...Conversion Product Solution GroupDocs...recognize text in separate image files. The default value is...
Learn this article and check how To restrict loading of external resources during Conversion...Conversion Product Solution GroupDocs...GroupDocs.Conversion Product Family / GroupDocs.Conversion for Java...
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:...Conversion Product Solution GroupDocs...metadata for specific formats / Images / Working with BMP metadata...
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....Conversion Product Solution GroupDocs...metadata for specific formats / Images / Working with DICOM metadata...
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:...Conversion Product Solution GroupDocs...metadata for specific formats / Images / Working with BMP metadata...