1# @ohos.graphics.hdrCapability (HDR Capability) 2 3The hdrCapability module provides enums related to the High Dynamic Range (HDR) capability. 4 5> **NOTE** 6> 7> The initial APIs of this module are supported since API version 11. Newly added APIs will be marked with a superscript to indicate their earliest API version. 8 9## Modules to Import 10 11```ts 12import { hdrCapability } from '@kit.ArkGraphics2D'; 13``` 14 15## HDRFormat 16 17Enumerates the HDR formats. 18 19**Atomic service API**: This API can be used in atomic services since API version 12. 20 21**System capability**: SystemCapability.Graphic.Graphic2D.ColorManager.Core 22 23| Name | Value | Description | 24| --------------------------- | ------ | ----------------------- | 25| NONE | 0 | Unsupported HDR type.| 26| VIDEO_HLG | 1 | Videos in Hybrid Log-Gamma (HLG) format. | 27| VIDEO_HDR10 | 2 | Videos in HDR10 format. | 28| VIDEO_HDR_VIVID | 3 | Videos in HDR_VIVID format. | 29| IMAGE_HDR_VIVID_DUAL | 4 | Images in HDR_VIVID format, stored in dual JPEG format. | 30| IMAGE_HDR_VIVID_SINGLE | 5 | Images in HDR_VIVID format, stored in single HEIF format. | 31| IMAGE_HDR_ISO_DUAL | 6 | Images in HDR_ISO format, stored in dual JPEG format. | 32| IMAGE_HDR_ISO_SINGLE | 7 | Images in HDR_ISO format, stored in single HEIF format. | 33