From 8be3e2a893f682913da6ece8d613a0a4079abda2 Mon Sep 17 00:00:00 2001 From: pengpeng7872 Date: Mon, 21 Jul 2025 07:27:10 +0000 Subject: [PATCH] update api/@ohos.file.PhotoPickerComponent.d.ets. Signed-off-by: pengpeng7872 --- api/@ohos.file.PhotoPickerComponent.d.ets | 30 +++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/api/@ohos.file.PhotoPickerComponent.d.ets b/api/@ohos.file.PhotoPickerComponent.d.ets index 52885ab0e0..b34563dfec 100644 --- a/api/@ohos.file.PhotoPickerComponent.d.ets +++ b/api/@ohos.file.PhotoPickerComponent.d.ets @@ -559,6 +559,36 @@ export declare class BaseItemInfo { * @since 12 */ duration?: number; + + /** + * Is it a dynamic photo. + * + * @type { ?PhotoSubtype } + * @syscap SystemCapability.FileManagement.PhotoAccessHelper.Core + * @atomicservice + * @since 20 + */ + PhotoSubtype?: photoAccessHelper.PhotoSubtype; + + /** + * Is it an HDR effect file. + * + * @type { ?DynamicRangeType } + * @syscap SystemCapability.FileManagement.PhotoAccessHelper.Core + * @atomicservice + * @since 20 + */ + dynamicRangeType?: photoAccessHelper.DynamicRangeType; + + /** + * image rotation angle + * + * @type { ?number } + * @syscap SystemCapability.FileManagement.PhotoAccessHelper.Core + * @atomicservice + * @since 20 + */ + orientation?: number; } /** -- Gitee