8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

使用 CameraPreview 时,相机屏幕处于横向模式,且宽高比略有偏差

NITHISH T 2月前

15 0

问题:使用 CameraPreview 时,相机屏幕处于横向模式,纵横比略有偏差。这很奇怪,因为相同的代码在其他项目中运行良好。该怎么办?

问题:

使用 CameraPreview 时,相机屏幕处于横向模式,纵横比略有偏差。这很奇怪,因为相同的代码在其他项目中运行良好。

这个问题的根本解决方案是什么?我正在寻找一种超越简单使用 Transform.rotate 的解决方案。

这是我的代码

SystemChrome.setPreferredOrientations(
    [
      DeviceOrientation.portraitUp,
      DeviceOrientation.portraitDown,
    ],
  );

主程序

Future<void> initializeCamera() async {
    try {
      _availableCameras = await availableCameras();

      debugPrint(' _availableCameras : ${_availableCameras![0]} ');

      if (_availableCameras!.isNotEmpty) {
        final controller = CameraController(
          _availableCameras![_selectedCameraIndex],
          ResolutionPreset.max,
          enableAudio: false,
        );

        await controller.initialize();
        await controller.lockCaptureOrientation(DeviceOrientation.portraitUp);
        state = controller; // Set the state with the initialized controller
        debugPrint(' camera initialized ');
      }
    } catch (e) {
      state = null; // If there's an error, set the state to null
    }
  }

控制器.dart

...
 
body: CameraPreview(cameraController!)

... 

一些页面.dart

这就是它的样子

enter image description here

你能帮助我吗?我正在使用 macOs_Desktop、android、ios

我尝试过 chatGPT 和 Google 搜索,但对我不起作用

帖子版权声明 1、本帖标题:使用 CameraPreview 时,相机屏幕处于横向模式,且宽高比略有偏差
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由NITHISH T在本站《flutter》版块原创发布, 转载请注明出处!
最新回复 (0)
返回
作者最近主题: