openharmony 鸿蒙 capi-image-source-mdk-h

2026-08-25 浏览 (1)

image_source_mdk.h

Overview

The file declares the APIs used to decode an image source into a PixelMap.

Library: libimage_source_ndk.z.so

System capability: SystemCapability.Multimedia.Image.Core

File to include: <multimedia/image_framework/image_source_mdk.h>

Since: 10

Related module: Image

Summary

Structs

Nametypedef KeywordDescription
OhosImageRegion-Describes the region of an image source to decode. It is a member variable of OhosImageDecodingOps.
ImageSourceNative_ImageSourceNativeDescribes an image source object at the native layer.
OhosImageSourceOps-Describes the image source options. It is used in OH_ImageSource_CreateFromUri, OH_ImageSource_CreateFromFd, OH_ImageSource_CreateFromData, and OH_ImageSource_CreateIncremental.
OhosImageDecodingOps-Describes the options for decoding an image source. It is used in OH_ImageSource_CreatePixelMap and OH_ImageSource_CreatePixelMapList.
OhosImageSourceInfo-Describes the image source information, which is obtained by calling OH_ImageSource_GetImageInfo.
OhosImageSource-Describes the input resource of an image source. Only one type of resource is accepted at a time. The image source is obtained by calling OH_ImageSource_CreateFromUri, OH_ImageSource_CreateFromFd, or OH_ImageSource_CreateFromData.
OhosImageSourceDelayTimeList-Describes the delay time list of an image source. The delay time list is obtained by calling OH_ImageSource_GetDelayTime.
OhosImageSourceSupportedFormat-Describes the format string supported by an image source. It is used in OhosImageSourceSupportedFormatList and OH_ImageSource_GetSupportedFormats.
OhosImageSourceSupportedFormatList-Describes the format string list supported by an image source. It is obtained by calling OH_ImageSource_GetSupportedFormats.
OhosImageSourceProperty-Describes the property string (in key-value format) of an image source. It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
OhosImageSourceUpdateData-Describes the update data option of the image source. It is obtained by calling OH_ImageSource_UpdateData.

Functions

NameDescription
int32_t OH_ImageSource_Create(napi_env env, struct OhosImageSource* src, struct OhosImageSourceOps* ops, napi_value *res)Creates an ImageSource object at the JavaScript native layer based on the specified OhosImageSource and OhosImageSourceOps structs.
int32_t OH_ImageSource_CreateFromUri(napi_env env, char* uri, size_t size, struct OhosImageSourceOps* ops, napi_value *res)Creates an ImageSource object at the JavaScript native layer based on the specified URI and OhosImageSourceOps struct.
int32_t OH_ImageSource_CreateFromFd(napi_env env, int32_t fd, struct OhosImageSourceOps* ops, napi_value *res)Creates an ImageSource object at the JavaScript native layer based on the specified file descriptor and OhosImageSourceOps struct.
int32_t OH_ImageSource_CreateFromData(napi_env env, uint8_t* data, size_t dataSize, struct OhosImageSourceOps* ops, napi_value *res)Creates an ImageSource object at the JavaScript native layer based on the specified image source buffer (defined by data) and OhosImageSourceOps struct.
int32_t OH_ImageSource_CreateFromRawFile(napi_env env, RawFileDescriptor rawFile, struct OhosImageSourceOps* ops, napi_value *res)Creates an ImageSource object at the JavaScript native layer based on the specified RawFileDescriptor and OhosImageSourceOps structs.
int32_t OH_ImageSource_CreateIncremental(napi_env env, struct OhosImageSource* source, struct OhosImageSourceOps* ops, napi_value *res)Creates an ImageSource object at the JavaScript native layer based on the specified OhosImageSource and OhosImageSourceOps structs. The image source data will be updated through OH_ImageSource_UpdateData.
int32_t OH_ImageSource_CreateIncrementalFromData(napi_env env, uint8_t* data, size_t dataSize, struct OhosImageSourceOps* ops, napi_value *res)Creates an ImageSource object of the incremental type at the JavaScript native layer based on the specified image source buffer (defined by data) and OhosImageSourceOps struct. The image data is updated through OH_ImageSource_UpdateData.
int32_t OH_ImageSource_GetSupportedFormats(struct OhosImageSourceSupportedFormatList* res)Obtains all supported decoding formats.
ImageSourceNative* OH_ImageSource_InitNative(napi_env env, napi_value source)Converts an ImageSource object at the JavaScript native layer into an ImageSourceNative object.
int32_t OH_ImageSource_CreatePixelMap(const ImageSourceNative* native, struct OhosImageDecodingOps* ops, napi_value *res)Decodes an ImageSourceNative object to obtain a PixelMap object at the JavaScript native layer based on the specified OhosImageDecodingOps struct.
int32_t OH_ImageSource_CreatePixelMapList(const ImageSourceNative* native, struct OhosImageDecodingOps* ops, napi_value *res)Decodes an ImageSourceNative object to obtain all PixelMap objects at the JavaScript native layer based on the specified OhosImageDecodingOps struct.
int32_t OH_ImageSource_GetDelayTime(const ImageSourceNative* native, struct OhosImageSourceDelayTimeList* res)Obtains the delay time list from an ImageSourceNative object (such as GIF image source).
int32_t OH_ImageSource_GetFrameCount(const ImageSourceNative* native, uint32_t *res)Obtains the number of frames from an ImageSourceNative object.
int32_t OH_ImageSource_GetImageInfo(const ImageSourceNative* native, int32_t index, struct OhosImageSourceInfo* info)Obtains image source information from an ImageSourceNative object by index.
int32_t OH_ImageSource_GetImageProperty(const ImageSourceNative* native, struct OhosImageSourceProperty* key, struct OhosImageSourceProperty* value)Obtains the value of an image property from an ImageSourceNative object.
int32_t OH_ImageSource_UpdateData(const ImageSourceNative* native, struct OhosImageSourceUpdateData* data)Updates the data of an ImageSourceNative object.
int32_t OH_ImageSource_Release(ImageSourceNative* native)Releases an ImageSourceNative object.

Variables

NameDescription
const char* OHOS_IMAGE_PROPERTY_BITS_PER_SAMPLE = "BitsPerSample"Pointer to bits per sample, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_ORIENTATION = "Orientation"Pointer to the orientation, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_IMAGE_LENGTH = "ImageLength"Pointer to the image length, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_IMAGE_WIDTH = "ImageWidth"Pointer to the image width, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_GPS_LATITUDE = "GPSLatitude"Pointer to the GPS latitude, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_GPS_LONGITUDE = "GPSLongitude"Pointer to the GPS longitude, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_GPS_LATITUDE_REF = "GPSLatitudeRef"Pointer to the GPS latitude reference information, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_GPS_LONGITUDE_REF = "GPSLongitudeRef"Pointer to the GPS longitude reference information, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_DATE_TIME_ORIGINAL = "DateTimeOriginal"Pointer to the created date and time, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_EXPOSURE_TIME = "ExposureTime"Pointer to the exposure time, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_SCENE_TYPE = "SceneType"Pointer to the scene type, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_ISO_SPEED_RATINGS = "ISOSpeedRatings"Pointer to the ISO speed ratings, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_F_NUMBER = "FNumber"Pointer to the f-number of the image, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10
const char* OHOS_IMAGE_PROPERTY_COMPRESSED_BITS_PER_PIXEL = "CompressedBitsPerPixel"Pointer to the compressed bits per pixel, one of the image properties.
It is used in OH_ImageSource_GetImageProperty and OH_ImageSource_ModifyImageProperty.
Since: 10

Function Description

OH_ImageSource_Create()

int32_t OH_ImageSource_Create(napi_env env, struct OhosImageSource* src, struct OhosImageSourceOps* ops, napi_value *res)

Description

Creates an ImageSource object at the JavaScript native layer based on the specified OhosImageSource and OhosImageSourceOps structs.

Since: 10

Deprecated from: 11

Substitute: OH_ImageSource_CreateFromUri, OH_ImageSource_CreateFromFd, and OH_ImageSource_CreateFromData

Parameters

NameDescription
napi_env envPointer to the JNI environment.
struct OhosImageSource* srcPointer to the input resource of the image source.
struct OhosImageSourceOps* opsPointer to the options for creating the image source.
napi_value *resPointer to an ImageSource object at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_SOURCE_DATA_INCOMPLETE: The image source data is incomplete.
IMAGE_RESULT_SOURCE_DATA: The image source data is incorrect.
IMAGE_RESULT_GET_DATA_ABNORMAL: An error occurs during image data retrieval.
IMAGE_RESULT_TOO_LARGE: The image data is too large.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_DECODE_EXIF_UNSUPPORT: Exif is not supported for image decoding.
IMAGE_RESULT_PROPERTY_NOT_EXIST: The image property does not exist.
IMAGE_RESULT_FILE_DAMAGED: The file is damaged.
IMAGE_RESULT_FILE_FD_ERROR: The file descriptor is incorrect.
IMAGE_RESULT_STREAM_SIZE_ERROR: The data stream is incorrect.
IMAGE_RESULT_SEEK_FAILED: Seeking the file fails.
IMAGE_RESULT_PEEK_FAILED: Peeking the file fails.
IMAGE_RESULT_FREAD_FAILED: Reading the file fails.

OH_ImageSource_CreateFromUri()

int32_t OH_ImageSource_CreateFromUri(napi_env env, char* uri, size_t size,struct OhosImageSourceOps* ops, napi_value *res)

Description

Creates an ImageSource object at the JavaScript native layer based on the specified URI and OhosImageSourceOps struct.

Since: 11

Parameters

NameDescription
napi_env envPointer to the JNI environment.
char* uriPointer to the image source URI. Only a file URI or Base64 URI is accepted. Currently, only absolute paths are supported.
size_t sizeLength of the image source URI.
struct OhosImageSourceOps* opsPointer to the options for creating the image source.
napi_value *resPointer to an ImageSource object at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.

OH_ImageSource_CreateFromFd()

int32_t OH_ImageSource_CreateFromFd(napi_env env, int32_t fd,struct OhosImageSourceOps* ops, napi_value *res)

Description

Creates an ImageSource object at the JavaScript native layer based on the specified file descriptor and OhosImageSourceOps struct.

Since: 11

Parameters

NameDescription
napi_env envPointer to the JNI environment.
int32_t fdDescriptor of the image source.
struct OhosImageSourceOps* opsPointer to the options for creating the image source.
napi_value *resPointer to an ImageSource object at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.

OH_ImageSource_CreateFromData()

int32_t OH_ImageSource_CreateFromData(napi_env env, uint8_t* data, size_t dataSize,struct OhosImageSourceOps* ops, napi_value *res)

Description

Creates an ImageSource object at the JavaScript native layer based on the specified image source buffer (defined by data) and OhosImageSourceOps struct.

Since: 11

Parameters

NameDescription
napi_env envPointer to the JNI environment.
uint8_t* dataPointer to the image source buffer. Only a formatted packet buffer or Base64 buffer is accepted.
size_t dataSizeSize of the image source buffer.
struct OhosImageSourceOps* opsPointer to the options for creating the image source.
napi_value *resPointer to an ImageSource object at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.

OH_ImageSource_CreateFromRawFile()

int32_t OH_ImageSource_CreateFromRawFile(napi_env env, RawFileDescriptor rawFile,struct OhosImageSourceOps* ops, napi_value *res)

Description

Creates an ImageSource object at the JavaScript native layer based on the specified RawFileDescriptor and OhosImageSourceOps structs.

Since: 11

Parameters

NameDescription
napi_env envPointer to the JNI environment.
RawFileDescriptor rawFileDescriptor of the image source resource.
struct OhosImageSourceOps* opsPointer to the options for creating the image source.
napi_value *resPointer to an ImageSource object at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.

OH_ImageSource_CreateIncremental()

int32_t OH_ImageSource_CreateIncremental(napi_env env, struct OhosImageSource* source, struct OhosImageSourceOps* ops, napi_value *res)

Description

Creates an ImageSource object at the JavaScript native layer based on the specified OhosImageSource and OhosImageSourceOps structs. The image source data will be updated through OH_ImageSource_UpdateData.

Since: 10

Deprecated from: 11

Substitute: OH_ImageSource_CreateIncrementalFromData

Parameters

NameDescription
napi_env envPointer to the JNI environment.
struct OhosImageSource* sourcePointer to the input resource of the image source. Only the buffer type is accepted.
struct OhosImageSourceOps* opsPointer to the options for creating the image source.
napi_value *resPointer to an ImageSource object at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.

OH_ImageSource_CreateIncrementalFromData()

int32_t OH_ImageSource_CreateIncrementalFromData(napi_env env, uint8_t* data, size_t dataSize,struct OhosImageSourceOps* ops, napi_value *res)

Description

Creates an ImageSource object of the incremental type at the JavaScript native layer based on the specified image source buffer (defined by data) and OhosImageSourceOps struct. The image data is updated through OH_ImageSource_UpdateData.

Since: 11

Parameters

NameDescription
napi_env envPointer to the JNI environment.
uint8_t* dataPointer to the image source buffer. Only a formatted packet buffer or Base64 buffer is accepted.
size_t dataSizeSize of the image source buffer.
struct OhosImageSourceOps* opsPointer to the options for creating the image source.
napi_value *resPointer to an ImageSource object at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.

OH_ImageSource_GetSupportedFormats()

int32_t OH_ImageSource_GetSupportedFormats(struct OhosImageSourceSupportedFormatList* res)

Description

Obtains all supported decoding formats.

Since: 10

Parameters

NameDescription
struct OhosImageSourceSupportedFormatList* resPointer to the OhosImageSourceSupportedFormatList struct. This struct contains the supportedFormatList and size properties.
This API needs to be called twice to correctly obtain the supported format list.
In the first call, res->supportedFormatList needs to be left empty, and res->size obtains the number of supported formats.
Before the second call, memory initialization must be completed. First, initialize res->supportedFormatList as a list containing res->size instances of OhosImageSourceSupportedFormat. Then, allocate memory for each OhosImageSourceSupportedFormat to ensure that its format property has sufficient space to obtain image format information.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_CHECK_FORMAT_ERROR: The check format is incorrect.

OH_ImageSource_InitNative()

ImageSourceNative* OH_ImageSource_InitNative(napi_env env, napi_value source)

Description

Converts an ImageSource object at the JavaScript native layer into an ImageSourceNative object.

Since: 10

Parameters

NameDescription
napi_env envPointer to the JNI environment.
napi_value sourcePointer to an ImageSource object at the JavaScript native layer.

Returns

TypeDescription
ImageSourceNative*Pointer to the ImageSourceNative object. If the operation fails, a null pointer is returned.

See also

OH_ImageSource_Release

OH_ImageSource_CreatePixelMap()

int32_t OH_ImageSource_CreatePixelMap(const ImageSourceNative* native,struct OhosImageDecodingOps* ops, napi_value *res)

Description

Decodes an ImageSourceNative object to obtain a PixelMap object at the JavaScript native layer based on the specified OhosImageDecodingOps struct.

Since: 10

Parameters

NameDescription
const ImageSourceNative* nativePointer to an ImageSourceNative object.
struct OhosImageDecodingOps* opsPointer to the options for decoding the image source.
napi_value *resPointer to a PixelMap object at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_CREATE_DECODER_FAILED: Failed to create the decoder.
IMAGE_RESULT_CREATE_ENCODER_FAILED: Failed to create the encoder.
IMAGE_RESULT_CHECK_FORMAT_ERROR: The check format is incorrect.
IMAGE_RESULT_THIRDPART_SKIA_ERROR: Skia error.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.
IMAGE_RESULT_ERR_SHAMEM_NOT_EXIST: The shared memory does not exist.
IMAGE_RESULT_ERR_SHAMEM_DATA_ABNORMAL: Data in the shared memory is abnormal.
IMAGE_RESULT_DECODE_ABNORMAL: Image decoding fails.
IMAGE_RESULT_MALLOC_ABNORMAL: The image is incorrect.
IMAGE_RESULT_DATA_UNSUPPORT: Image initialization error.
IMAGE_RESULT_INIT_ABNORMAL: The image input data is incorrect.
IMAGE_RESULT_CROP: An error occurs during image cropping.
IMAGE_RESULT_UNKNOWN_FORMAT: The image format is unknown.
IMAGE_RESULT_PLUGIN_REGISTER_FAILED: Failed to register the plugin.
IMAGE_RESULT_PLUGIN_CREATE_FAILED: Failed to create the plugin.
IMAGE_RESULT_ENCODE_FAILED: Failed to add the PixelMap.
IMAGE_RESULT_HW_DECODE_UNSUPPORT: Image hardware decoding is not supported.
IMAGE_RESULT_HW_DECODE_FAILED: Hardware decoding fails.
IMAGE_RESULT_ERR_IPC: IPC fails.
IMAGE_RESULT_INDEX_INVALID: The index is invalid.
IMAGE_RESULT_ALPHA_TYPE_ERROR: Hardware decoding fails.
IMAGE_RESULT_ALLOCATER_TYPE_ERROR: Hardware decoding fails.

OH_ImageSource_CreatePixelMapList()

int32_t OH_ImageSource_CreatePixelMapList(const ImageSourceNative* native,struct OhosImageDecodingOps* ops, napi_value *res)

Description

Decodes an ImageSourceNative object to obtain all PixelMap objects at the JavaScript native layer based on the specified OhosImageDecodingOps struct.

Since: 10

Parameters

NameDescription
const ImageSourceNative* nativePointer to an ImageSourceNative object.
struct OhosImageDecodingOps* opsPointer to the options for decoding the image source.
napi_value *resPointer to PixelMap objects at the JavaScript native layer.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_CREATE_DECODER_FAILED: Failed to create the decoder.
IMAGE_RESULT_CREATE_ENCODER_FAILED: Failed to create the encoder.
IMAGE_RESULT_CHECK_FORMAT_ERROR: The check format is incorrect.
IMAGE_RESULT_THIRDPART_SKIA_ERROR: Skia error.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.
IMAGE_RESULT_ERR_SHAMEM_NOT_EXIST: The shared memory does not exist.
IMAGE_RESULT_ERR_SHAMEM_DATA_ABNORMAL: Data in the shared memory is abnormal.
IMAGE_RESULT_DECODE_ABNORMAL: Image decoding fails.
IMAGE_RESULT_MALLOC_ABNORMAL: The image is incorrect.
IMAGE_RESULT_DATA_UNSUPPORT: Image initialization error.
IMAGE_RESULT_INIT_ABNORMAL: The image input data is incorrect.
IMAGE_RESULT_CROP: An error occurs during image cropping.
IMAGE_RESULT_UNKNOWN_FORMAT: The image format is unknown.
IMAGE_RESULT_PLUGIN_REGISTER_FAILED: Failed to register the plugin.
IMAGE_RESULT_PLUGIN_CREATE_FAILED: Failed to create the plugin.
IMAGE_RESULT_ENCODE_FAILED: Failed to add the PixelMap.
IMAGE_RESULT_HW_DECODE_UNSUPPORT: Image hardware decoding is not supported.
IMAGE_RESULT_HW_DECODE_FAILED: Hardware decoding fails.
IMAGE_RESULT_ERR_IPC: IPC fails.
IMAGE_RESULT_INDEX_INVALID: The index is invalid.
IMAGE_RESULT_ALPHA_TYPE_ERROR: Hardware decoding fails.
IMAGE_RESULT_ALLOCATER_TYPE_ERROR: Hardware decoding fails.
IMAGE_RESULT_DECODE_EXIF_UNSUPPORT: Exif is not supported for image decoding.
IMAGE_RESULT_PROPERTY_NOT_EXIST: The image property does not exist.

OH_ImageSource_GetDelayTime()

int32_t OH_ImageSource_GetDelayTime(const ImageSourceNative* native,struct OhosImageSourceDelayTimeList* res)

Description

Obtains the delay time list from an ImageSourceNative object (such as GIF image source).

Since: 10

Parameters

NameDescription
const ImageSourceNative* nativePointer to an ImageSourceNative object.
struct OhosImageSourceDelayTimeList* resPointer to the OhosImageSourceDelayTimeList object obtained.
When the input delayTimeList is a null pointer and size is 0, the size of the delay time list is returned through size in res. To obtain the complete delay time list, a space greater than size is required.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_CREATE_DECODER_FAILED: Failed to create the decoder.
IMAGE_RESULT_THIRDPART_SKIA_ERROR: Skia error.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.
IMAGE_RESULT_DECODE_ABNORMAL: Image decoding fails.
IMAGE_RESULT_DATA_UNSUPPORT: Image initialization error.
IMAGE_RESULT_UNKNOWN_FORMAT: The image format is unknown.
IMAGE_RESULT_PLUGIN_REGISTER_FAILED: Failed to register the plugin.
IMAGE_RESULT_PLUGIN_CREATE_FAILED: Failed to create the plugin.
IMAGE_RESULT_INDEX_INVALID: The index is invalid.
IMAGE_RESULT_DECODE_EXIF_UNSUPPORT: Exif is not supported for image decoding.
IMAGE_RESULT_PROPERTY_NOT_EXIST: The image property does not exist.

OH_ImageSource_GetFrameCount()

int32_t OH_ImageSource_GetFrameCount(const ImageSourceNative* native, uint32_t *res)

Description

Obtains the number of frames from an ImageSourceNative object.

Since: 10

Parameters

NameDescription
const ImageSourceNative* nativePointer to an ImageSourceNative object.
uint32_t *resPointer to the frame count.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_CREATE_DECODER_FAILED: Failed to create the decoder.
IMAGE_RESULT_THIRDPART_SKIA_ERROR: Skia error.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.
IMAGE_RESULT_DECODE_ABNORMAL: Image decoding fails.
IMAGE_RESULT_DATA_UNSUPPORT: Image initialization error.
IMAGE_RESULT_UNKNOWN_FORMAT: The image format is unknown.
IMAGE_RESULT_PLUGIN_REGISTER_FAILED: Failed to register the plugin.
IMAGE_RESULT_PLUGIN_CREATE_FAILED: Failed to create the plugin.
IMAGE_RESULT_INDEX_INVALID: The index is invalid.
IMAGE_RESULT_DECODE_EXIF_UNSUPPORT: Exif is not supported for image decoding.
IMAGE_RESULT_PROPERTY_NOT_EXIST: The image property does not exist.

OH_ImageSource_GetImageInfo()

int32_t OH_ImageSource_GetImageInfo(const ImageSourceNative* native, int32_t index,struct OhosImageSourceInfo* info)

Description

Obtains image source information from an ImageSourceNative object by index.

Since: 10

Parameters

NameDescription
const ImageSourceNative* nativePointer to an ImageSourceNative object.
int32_t indexIndex of the frame count.
struct OhosImageSourceInfo* infoPointer to the OhosImageSourceInfo object obtained.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_CREATE_DECODER_FAILED: Failed to create the decoder.
IMAGE_RESULT_THIRDPART_SKIA_ERROR: Skia error.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.
IMAGE_RESULT_DECODE_ABNORMAL: Image decoding fails.
IMAGE_RESULT_DATA_UNSUPPORT: Image initialization error.
IMAGE_RESULT_UNKNOWN_FORMAT: The image format is unknown.
IMAGE_RESULT_PLUGIN_REGISTER_FAILED: Failed to register the plugin.
IMAGE_RESULT_PLUGIN_CREATE_FAILED: Failed to create the plugin.
IMAGE_RESULT_INDEX_INVALID: The index is invalid.
IMAGE_RESULT_DECODE_EXIF_UNSUPPORT: Exif is not supported for image decoding.
IMAGE_RESULT_PROPERTY_NOT_EXIST: The image property does not exist.

OH_ImageSource_GetImageProperty()

int32_t OH_ImageSource_GetImageProperty(const ImageSourceNative* native, struct OhosImageSourceProperty* key, struct OhosImageSourceProperty* value)

Description

Obtains the value of an image property from an ImageSourceNative object.

Since: 10

Parameters

NameDescription
const ImageSourceNative* nativePointer to an ImageSourceNative object.
struct OhosImageSourceProperty* keyPointer to the property. For details, see OhosImageSourceProperty.
struct OhosImageSourceProperty* valuePointer to the OhosImageSourceProperty object obtained. If the input value is a null pointer and size is 0, the size of the property value is returned through size in value. To obtain the complete property value, a space greater than size is required.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_CREATE_DECODER_FAILED: Failed to create the decoder.
IMAGE_RESULT_THIRDPART_SKIA_ERROR: Skia error.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.
IMAGE_RESULT_DECODE_ABNORMAL: Image decoding fails.
IMAGE_RESULT_DATA_UNSUPPORT: Image initialization error.
IMAGE_RESULT_UNKNOWN_FORMAT: The image format is unknown.
IMAGE_RESULT_PLUGIN_REGISTER_FAILED: Failed to register the plugin.
IMAGE_RESULT_PLUGIN_CREATE_FAILED: Failed to create the plugin.
IMAGE_RESULT_INDEX_INVALID: The index is invalid.
IMAGE_RESULT_DECODE_EXIF_UNSUPPORT: Exif is not supported for image decoding.
IMAGE_RESULT_PROPERTY_NOT_EXIST: The image property does not exist.

OH_ImageSource_ModifyImageProperty()

int32_t OH_ImageSource_ModifyImageProperty(const ImageSourceNative* native, struct OhosImageSourceProperty* key, struct OhosImageSourceProperty* value)

Description

Modifies the value of an image property of an ImageSourceNative object.

Since: 10

Parameters

NameDescription
const ImageSourceNative* nativePointer to an ImageSourceNative object.
struct OhosImageSourceProperty* keyPointer to the property. For details, see OhosImageSourceProperty.
struct OhosImageSourceProperty* valuePointer to the new value of the property.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_CREATE_DECODER_FAILED: Failed to create the decoder.
IMAGE_RESULT_THIRDPART_SKIA_ERROR: Skia error.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.
IMAGE_RESULT_DECODE_ABNORMAL: Image decoding fails.
IMAGE_RESULT_DATA_UNSUPPORT: Image initialization error.
IMAGE_RESULT_UNKNOWN_FORMAT: The image format is unknown.
IMAGE_RESULT_PLUGIN_REGISTER_FAILED: Failed to register the plugin.
IMAGE_RESULT_PLUGIN_CREATE_FAILED: Failed to create the plugin.
IMAGE_RESULT_INDEX_INVALID: The index is invalid.
IMAGE_RESULT_DECODE_EXIF_UNSUPPORT: Exif is not supported for image decoding.
IMAGE_RESULT_PROPERTY_NOT_EXIST: The image property does not exist.

OH_ImageSource_UpdateData()

int32_t OH_ImageSource_UpdateData(const ImageSourceNative* native, struct OhosImageSourceUpdateData* data)

Description

Updates the data of an ImageSourceNative object.

Since: 10

Parameters

NameDescription
const ImageSourceNative* nativePointer to an ImageSourceNative object.
struct OhosImageSourceUpdateData* dataPointer to the update data. For details, see OhosImageSourceUpdateData.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DECODE_FAILED: Decoding fails.
IMAGE_RESULT_DECODE_HEAD_ABNORMAL: An error occurs during decoding of the image header.
IMAGE_RESULT_CREATE_DECODER_FAILED: Failed to create the decoder.
IMAGE_RESULT_CREATE_ENCODER_FAILED: Failed to create the encoder.
IMAGE_RESULT_CHECK_FORMAT_ERROR: The check format is incorrect.
IMAGE_RESULT_THIRDPART_SKIA_ERROR: An error occurs in the Skia third-party library.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.
IMAGE_RESULT_ERR_SHAMEM_NOT_EXIST: The shared memory does not exist.
IMAGE_RESULT_ERR_SHAMEM_DATA_ABNORMAL: Data in the shared memory is abnormal.
IMAGE_RESULT_DECODE_ABNORMAL: Image decoding fails.
IMAGE_RESULT_MALLOC_ABNORMAL: An error occurs during memory allocation.
IMAGE_RESULT_DATA_UNSUPPORT: Image initialization error.
IMAGE_RESULT_INIT_ABNORMAL: The image input data is incorrect.
IMAGE_RESULT_CROP: An error occurs during image cropping.
IMAGE_RESULT_UNKNOWN_FORMAT: The image format is unknown.
IMAGE_RESULT_PLUGIN_REGISTER_FAILED: Failed to register the plugin.
IMAGE_RESULT_PLUGIN_CREATE_FAILED: Failed to create the plugin.
IMAGE_RESULT_ENCODE_FAILED: Failed to add the PixelMap.
IMAGE_RESULT_HW_DECODE_UNSUPPORT: Image hardware decoding is not supported.
IMAGE_RESULT_HW_DECODE_FAILED: Hardware decoding fails.
IMAGE_RESULT_ERR_IPC: IPC fails.
IMAGE_RESULT_INDEX_INVALID: The index is invalid.
IMAGE_RESULT_ALPHA_TYPE_ERROR: The alpha type is incorrect.
IMAGE_RESULT_ALLOCATER_TYPE_ERROR: The memory allocator type is incorrect.

OH_ImageSource_Release()

int32_t OH_ImageSource_Release(ImageSourceNative* native)

Description

Releases an ImageSourceNative object.

Since: 10

Parameters

NameDescription
ImageSourceNative* nativePointer to an ImageSourceNative object.

Returns

TypeDescription
int32_tResult code defined in IRNdkErrCode:
OHOS_IMAGE_RESULT_SUCCESS: The operation is successful.
IMAGE_RESULT_BAD_PARAMETER: A parameter is incorrect.
IMAGE_RESULT_JNI_ENV_ABNORMAL: The JNI environment is abnormal.
IMAGE_RESULT_INVALID_PARAMETER: A parameter is invalid.
IMAGE_RESULT_GET_DATA_ABNORMAL: Failed to obtain image data.
IMAGE_RESULT_DATA_ABNORMAL: The input image data is incorrect.

See also

OH_ImageSource_Create, OH_ImageSource_CreateIncremental

你可能感兴趣的鸿蒙文章

openharmony 鸿蒙 capi-image-nativemodule-oh-pixelmap-hdrmetadatavalue

openharmony 鸿蒙 capi-image-imagepacker-opts-

openharmony 鸿蒙 capi-image-nativemodule-image-region

openharmony 鸿蒙 capi-image-imagepacker-native-

openharmony 鸿蒙 capi-image-imagenative-

openharmony 鸿蒙 capi-image-processing-h

openharmony 鸿蒙 capi-image-ohosimagesourcesupportedformat

openharmony 鸿蒙 capi-image-nativemodule-image-size

openharmony 鸿蒙 capi-image-mdk-h

openharmony 鸿蒙 capi-image-ohosimagesourcedelaytimelist

  • 所属分类: 后端技术
  • 本文标签: 软件 鸿蒙
  • 版权声明: 本文链接 https://seaxiang.com/blog/qlo1WEFd