setCameraExposurePosition abstract method
Sets the manual exposure position for the currently used camera.
position
: The position of the exposure point. Setting the upper-left corner of the canvas as the origin, the x
in position
means the x-coordinate of the exposure point in range of [0, 1]
, and the y
in position
means the y-coordinate of the exposure point in range of [0, 1]
.
Notes:
- When you set the exposure point at the center of the canvas, the exposure point setting will be canceled.
- The camera exposure point setting will be invalid after calling RTCVideo.stopVideoCapture to stop internal capturing.
Implementation
Future<int?> setCameraExposurePosition(Offset position);