Anthony F.

Results 6 comments of Anthony F.

@rudyZanotti I'm having trouble compiling the project after your PR was merged. Xcode bugs me with configureVideoOutput() method or videoOutput variable for example. I can't find both in the codebase....

For iOS there is the _rotateWhenOrientationChanged_ property that can be set on the CameraPreviewOptions on the plugin. This seems to work fine for iOS but there is no similar property...

/** Rotate preview when orientation changes (applicable to the ios platforms only; **default value is true**) */ rotateWhenOrientationChanged?: boolean; So you should try setting it to false manually. Also, if...

@gbrits I don't set width and height and have a correct behaviour on iOS. Here are my properties: ` private static cameraPreviewOptions: CameraPreviewOptions = { position: 'rear', toBack: true, rotateWhenOrientationChanged:...

Can somebody from the project answer this question please? I am also puzzled as to why there would be a limitation do 2048 x 1024. The "fix" is simple on...

@flaupi I've discovered that adding width and height parameters on the CameraPreviewPictureOptions helps for that issue. By adding something like _width: 5000 height:2500_ it successfully takes me the highest resolution...