中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
在文档中看到Image在解码的时候可以支持OH_DecodingOptions_SetDesiredDynamicRange,请问有Demo可以参考的吗?HDR的图片的文档有吗?
微信扫码分享
OH_ImageSourceNative *imageSource = NULL; // 打开图片文件fd OH_ImageSourceNative_CreateFromFd(fd, &imageSource); OH_DecodingOptions *decodingOptions = NULL; OH_DecodingOptions_Create(&decodingOptions); OH_DecodingOptions_SetDesiredDynamicRange(IMAGE_DYNAMIC_RANGE_HDR); OH_PixelmapNative *pixelMap = NULL; OH_ImageSourceNative_CreatePixelmap(imageSource,decodingOptions,&pixelMap);