Bengt Ericsson

Results 5 comments of Bengt Ericsson

This is exactly what I have been trying to achieve. I would like to refactor `setPreviewSize` and extend it to also take `{ x: number, y: number}` so that you...

According to https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview/blob/master/src/ios/CameraPreview.m#L19-L23 it looks like you cannot restart the camera without stopping it first, which is not very good for user interaction.

I see that if we modify these lines https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview/blob/master/src/ios/CameraPreview.m#L523-L526 to also include `x` and `y` coordinates and feed them into `CGRectMake(x, y, width, height)` then we should accomplish what we...

Hi again @Yuessiah ! Thank you for making another pull request, would you mind explaining the purpose and intent of your changes? :) Cheers, Zol

Hi, It looks like `input()` throws an `EOFError` when processing `Ctrl+D` as input, just eyeballing the code after 4 years I think this is the culprit. There is an edit...