在Expo托管应用中使用相机时,默认视图是摄像机的尺寸。 摄像机比普通摄像机放大更多。
import { Camera } from 'expo-camera';
这是我的返回码:
<React.Fragment>
<PinchGestureHandler
onGestureEvent={this.onPinchGestureEvent}
>
<View>
<Camera
type={cameraType}
flashMode={flashMode}
zoom={zoom}
style={styles.preview}
ref={camera => this.camera = camera}
/>
</View>
</PinchGestureHandler>
{captures.length > 0 && <Gallery captures={captures}/>}
<Toolbar
capturing={capturing}
flashMode={flashMode}
cameraType={cameraType}
setFlashMode={this.setFlashMode}
setCameraType={this.setCameraType}
savePictures={this.savePictures}
onShortCapture={this.handleShortCapture}
changeZoom={this.changeZoom}
/>
</React.Fragment>
是否可以通过设置使它以iPhone设备上图片的可用大小打开?