Home
last modified time | relevance | path

Searched refs:imageNative (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/
H A Dphoto_native_impl.cpp43 OH_ImageNative *imageNative = new OH_ImageNative; in GetMainImage() local
44 imageNative->imgNative = mainImage_.get(); in GetMainImage()
45 *mainImage = imageNative; in GetMainImage()
/ohos5.0/docs/zh-cn/application-dev/media/camera/
H A Dnative-camera-shooting-case.md122 OH_ImageNative *imageNative;
123 Camera_ErrorCode errCode = OH_PhotoNative_GetMainImage(photo, &imageNative);
124 …OG_INFO(LOG_APP, "OnPhotoAvailable errCode:%{public}d imageNative:%{public}p", errCode, imageNativ…
127 Image_ErrorCode imageErr = OH_ImageNative_GetImageSize(imageNative, &size);
132 imageErr = OH_ImageNative_GetComponentTypes(imageNative, nullptr, &componentTypeSize);
137 imageErr = OH_ImageNative_GetComponentTypes(imageNative, &components, &componentTypeSize);
141 imageErr = OH_ImageNative_GetByteBuffer(imageNative, components[0], &nativeBuffer);
145 imageErr = OH_ImageNative_GetBufferSize(imageNative, components[0], &nativeBufferSize);
150 imageErr = OH_ImageNative_GetRowStride(imageNative, components[0], &rowStride);
154 imageErr = OH_ImageNative_GetPixelStride(imageNative, components[0], &pixelStride);
H A Dnative-camera-shooting.md112 OH_ImageNative *imageNative;
113 Camera_ErrorCode errCode = OH_PhotoNative_GetMainImage(photo, &imageNative);
114 …OG_INFO(LOG_APP, "OnPhotoAvailable errCode:%{public}d imageNative:%{public}p", errCode, imageNativ…
117 Image_ErrorCode imageErr = OH_ImageNative_GetImageSize(imageNative, &size);
122 imageErr = OH_ImageNative_GetComponentTypes(imageNative, nullptr, &componentTypeSize);
127 imageErr = OH_ImageNative_GetComponentTypes(imageNative, &components, &componentTypeSize);
131 imageErr = OH_ImageNative_GetByteBuffer(imageNative, components[0], &nativeBuffer);
135 imageErr = OH_ImageNative_GetBufferSize(imageNative, components[0], &nativeBufferSize);
140 imageErr = OH_ImageNative_GetRowStride(imageNative, components[0], &rowStride);
144 imageErr = OH_ImageNative_GetPixelStride(imageNative, components[0], &pixelStride);
[all …]
/ohos5.0/docs/en/application-dev/media/camera/
H A Dnative-camera-shooting-case.md122 OH_ImageNative *imageNative;
123 Camera_ErrorCode errCode = OH_PhotoNative_GetMainImage(photo, &imageNative);
124 …OG_INFO(LOG_APP, "OnPhotoAvailable errCode:%{public}d imageNative:%{public}p", errCode, imageNativ…
127 Image_ErrorCode imageErr = OH_ImageNative_GetImageSize(imageNative, &size);
132 imageErr = OH_ImageNative_GetComponentTypes(imageNative, nullptr, &componentTypeSize);
137 imageErr = OH_ImageNative_GetComponentTypes(imageNative, &components, &componentTypeSize);
141 imageErr = OH_ImageNative_GetByteBuffer(imageNative, components[0], &nativeBuffer);
145 imageErr = OH_ImageNative_GetBufferSize(imageNative, components[0], &nativeBufferSize);
150 imageErr = OH_ImageNative_GetRowStride(imageNative, components[0], &rowStride);
154 imageErr = OH_ImageNative_GetPixelStride(imageNative, components[0], &pixelStride);
H A Dnative-camera-shooting.md112 OH_ImageNative *imageNative;
113 Camera_ErrorCode errCode = OH_PhotoNative_GetMainImage(photo, &imageNative);
114 …OG_INFO(LOG_APP, "OnPhotoAvailable errCode:%{public}d imageNative:%{public}p", errCode, imageNativ…
117 Image_ErrorCode imageErr = OH_ImageNative_GetImageSize(imageNative, &size);
122 imageErr = OH_ImageNative_GetComponentTypes(imageNative, nullptr, &componentTypeSize);
127 imageErr = OH_ImageNative_GetComponentTypes(imageNative, &components, &componentTypeSize);
131 imageErr = OH_ImageNative_GetByteBuffer(imageNative, components[0], &nativeBuffer);
135 imageErr = OH_ImageNative_GetBufferSize(imageNative, components[0], &nativeBufferSize);
140 imageErr = OH_ImageNative_GetRowStride(imageNative, components[0], &rowStride);
144 imageErr = OH_ImageNative_GetPixelStride(imageNative, components[0], &pixelStride);
[all …]
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dimage_native_test.cpp146 struct OH_ImageNative imageNative; variable
147 OH_ImageNative* pImg = &imageNative;