Sort Score
Result 10 results
Languages All
Labels All
Results 2,071 - 2,080 of 10,115 for

new

(0.03 sec)
  1. Clean metadata | Documentation

    Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....Consulting Blog Knowledge Base New Releases Status Websites aspose...JavaScript const metadata = new groupdocs . metadata . Metadata...

    docs.groupdocs.com/metadata/nodejs-java/clean-m...
  2. Working with BMP metadata | Documentation

    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:...Consulting Blog Knowledge Base New Releases Status Websites aspose...BmpReadHeaderPropert try ( Metadata metadata = new Metadata ( Constants . InputBmp...

    docs.groupdocs.com/metadata/java/working-with-b...
  3. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured....Consulting Blog Knowledge Base New Releases Status Websites aspose...using ( Redactor redactor = new Redactor ( @"C:\sample.dump"...

    docs.groupdocs.com/redaction/net/extend-support...
  4. Working with DICOM metadata | Documentation

    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....Consulting Blog Knowledge Base New Releases Status Websites aspose...DicomReadNativeMetad try ( Metadata metadata = new Metadata ( Constants . InputDicom...

    docs.groupdocs.com/metadata/java/working-with-d...
  5. Edit and Manage Metadata in Python Apps - Group...

    Discover how to utilize GroupDocs.Metadata for Python via .NET to extract, update and remove metadata in your applications....the Metadata Object : Create a new instance of the Metadata class...the sanitized document to a new file. import groupdocs.metadata...

    blog.groupdocs.com/metadata/edit-metadata-in-py...
  6. How to merge BMP images using Java | Documentation

    Learn how to merge BMP image files, combine BMP image files into one file programmatically in java language using GroupDocs.Merger for Java library....Consulting Blog Knowledge Base New Releases Status Websites aspose...source image file Merger merger = new Merger ( "c:\sample1.bmp" ) //...

    docs.groupdocs.com/merger/java/getting-started/...
  7. How to merge PNG images using Java | Documentation

    Learn how to merge PNG image files, combine PNG image files into one file programmatically in java language using GroupDocs.Merger for Java library....Consulting Blog Knowledge Base New Releases Status Websites aspose...source image file Merger merger = new Merger ( "c:\sample1.png" ) //...

    docs.groupdocs.com/merger/java/getting-started/...
  8. Implement Conversion to WMF Format

    WMF is a Windows MetaFile that can contain both vector and bitmap image information. We added support of WMF file format along-with few others in GroupDocs.Conversion for .NET 19.5. You can now convert any supported file format to WMF. Along-with WMF, convert supported documents to EMF. Convert to EMF Convert to WMF Moreover, you can now pay royalties for the use of the API. Yes, metered licensing is now enabled.... New file formats you can convert...

    blog.groupdocs.com/conversion/implement-convers...
  9. Faceted search | Documentation

    This article gives the knowledge of the creation of faceted search queries using Java search API....Consulting Blog Knowledge Base New Releases Status Websites aspose...specified folder Index index = new Index ( indexFolder ); // Indexing...

    docs.groupdocs.com/search/java/faceted-search/
  10. Search results | Documentation

    This article shows that how to perform the operations on search results....Consulting Blog Knowledge Base New Releases Status Websites aspose...Creating an index Index index = new Index ( indexFolder ); // Indexing...

    docs.groupdocs.com/search/net/search-results/