-
-
Notifications
You must be signed in to change notification settings - Fork 46
KeepAspectRatio, sizes and orientation #98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
AC:
|
4 tasks
The feature is released in [email protected]. Enjoy! |
Actually since I suggested that, I needed to embed the camera with another plugin, because sometimes my app was being "chosen" to be killed in low resources device, when it was to switch to camera app. I know it's Android's behavior, so it was the solution I found. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
As and enhancement, is it possible that
width
andheight
could be treated conditionally whenKeepAspectRatio
is set totrue
, depending on camera orientation when photo is taken?Motive: let's say I have the following options setted:
As a result, I see that landscape/horizontal photo I take, is like 576x324 (Ok case).
Also see that portrait/vertical photo is 648x1152 (because of the "rule" that says that only one of width/height could be respected with
keepAspectRatio: true
), but actually, in this case, would be better for me to specify that when taking portrait photo, I would like to have maybewidth: 480
andheight: 640
.The text was updated successfully, but these errors were encountered: