• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Camera_PhotoCaptureSetting
2
3
4## Overview
5
6The Camera_PhotoCaptureSetting struct describes the parameters related to photo capture.
7
8**Since**: 11
9
10**Related module**: [OH_Camera](_o_h___camera.md)
11
12**Header file**: [camera.h](camera_8h.md)
13
14## Summary
15
16
17### Member Variables
18
19| Name| Description|
20| -------- | -------- |
21| [Camera_QualityLevel](_o_h___camera.md#camera_qualitylevel) [quality](#quality) | Quality of the photo. |
22| [Camera_ImageRotation](_o_h___camera.md#camera_imagerotation) [rotation](#rotation) | Rotation angle. |
23| [Camera_Location](_camera___location.md) \* [location](#location) | Pointer to the location where the photo is taken. |
24| bool [mirror](#mirror) | Whether mirroring is enabled. The value **true** means that mirroring is enabled, and **false** means the opposite. The default value is **false**. |
25
26
27## Member Variable Description
28
29
30### location
31
32```
33Camera_Location* Camera_PhotoCaptureSetting::location
34```
35**Description**
36
37Pointer to the location where the photo is taken.
38
39
40### mirror
41
42```
43bool Camera_PhotoCaptureSetting::mirror
44```
45**Description**
46
47Whether mirroring is enabled. The default value is **false**.
48
49
50### quality
51
52```
53Camera_QualityLevel Camera_PhotoCaptureSetting::quality
54```
55**Description**
56
57Quality of the photo.
58
59
60### rotation
61
62```
63Camera_ImageRotation Camera_PhotoCaptureSetting::rotation
64```
65**Description**
66
67Rotation angle.
68