admin管理员组文章数量:1345199
I am using the expo-camera library to take a selfie image. The preview is mirrored but the saved image is reverted to the normal orientation. How do I prevent this effect from happening (I want the image to stay mirrored), or if I can't, how can I flip my image horizontally?
Here's what I have so far for taking pictures:
const takePic = async () => {
if (cameraRef) {
const photo = await cameraRef.current.takePictureAsync();
setFrontProfile(photo.uri);
}
};
I am using the expo-camera library to take a selfie image. The preview is mirrored but the saved image is reverted to the normal orientation. How do I prevent this effect from happening (I want the image to stay mirrored), or if I can't, how can I flip my image horizontally?
Here's what I have so far for taking pictures:
const takePic = async () => {
if (cameraRef) {
const photo = await cameraRef.current.takePictureAsync();
setFrontProfile(photo.uri);
}
};
Share
Improve this question
asked May 1, 2021 at 15:25
KenKen
1,4814 gold badges23 silver badges45 bronze badges
3 Answers
Reset to default 8I know this was already answered by @Kartikey but I wanted to offer a direct answer to the authors question.
The example in the link @Kartikey gave had the rotation set to 90 not 180. My answer checks if the photo was from the front camera before applying the manipulation, and fits right into the given code nice and clean.
import { manipulateAsync, FlipType, SaveFormat } from 'expo-image-manipulator';
...
const takePic = async () => {
if (!cameraRef) return;
let photo = await cameraRef.takePictureAsync();
if (cameraType === Camera.Constants.Type.front) {
photo = await manipulateAsync(
photo.localUri || photo.uri,
[
{ rotate: 180 },
{ flip: FlipType.Vertical },
],
{ press: 1, format: SaveFormat.PNG }
);
}
setFrontProfile(photo.uri);
};
Use ImageManipulator to flip it.
expo-camera give have by default function mirror
<CameraView
style={styles.camera}
ref={cameraRef}
facing='front'
ratio="1:1"
mirror={true} //use this for stop the flip image
/>
本文标签: javascriptexpocamera keep front facing photo mirroredStack Overflow
版权声明:本文标题:javascript - expo-camera keep front facing photo mirrored? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743704857a2524942.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论