1 /*
2 * Copyright (c) 2024-2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include "kits/native/include/camera/photo_native.h"
17 #include "impl/photo_native_impl.h"
18 #include "camera_log.h"
19 #include "hilog/log.h"
20
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24
OH_PhotoNative_GetMainImage(OH_PhotoNative * photo,OH_ImageNative ** mainImage)25 Camera_ErrorCode OH_PhotoNative_GetMainImage(OH_PhotoNative* photo, OH_ImageNative** mainImage)
26 {
27 CHECK_AND_RETURN_RET_LOG(photo != nullptr, CAMERA_INVALID_ARGUMENT,
28 "Invaild argument, photo is null!");
29 CHECK_AND_RETURN_RET_LOG(mainImage != nullptr, CAMERA_INVALID_ARGUMENT,
30 "Invaild argument, main is null!");
31 return photo->GetMainImage(mainImage);
32 }
33
OH_PhotoNative_Release(OH_PhotoNative * photo)34 Camera_ErrorCode OH_PhotoNative_Release(OH_PhotoNative* photo)
35 {
36 CHECK_AND_RETURN_RET_LOG(photo != nullptr, CAMERA_INVALID_ARGUMENT,
37 "Invaild argument, photo is null!");
38 delete photo;
39 photo = nullptr;
40 return CAMERA_OK;
41 }
42
43 #ifdef __cplusplus
44 }
45 #endif