I'm trying to capture photo and make it landscape. Im using orientation='landscape-left'
inside my Camera
component.
However, when I take picture, it still saving the photo as portrait
.
I blocked application rotation so the app always stays portrait
. However, I need to take the picture landscape
.
<Camera
ref={camera}
style={[StyleSheet.absoluteFill]}
device={device}
photo
orientation='landscape-left'
isActive={true}/>
<View style={styles.cameraButtons}>
<Pressable onPress={() => takePhoto()}>
<Icons name="camera" size={54} style={styles.cameraIcon}/>
</Pressable>
</View>
This post sorta worked for me. Using sensor libraries with Android in general seem to be very picky about what versions will work together. Might be able to use document context to rotate the image. Something like this:
I also created a bug report with RNVC for this same issue yesterday for a similar issue regarding the orientation prop in the camera component itself. Hopefully this issue will be resolved soon.