You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This doesn't (it creates a 1px x 1px image):
camera.displayCamera(onDisplayCameraFinished, 1000, 1000);
Peaking your AirImage.as I see that you are not setting the maxImageWidth and maxImageHeight, if there is no AlbumName provided, which can be the cause for this glitch.
I do not wish to save captured images locally, or at least not at all in the user's cameraRoll.
Same result is found for Image picker for Android. I specified -1 as width and height and it returns 1x1 image. I need same image as it is without change of the image's dimension. It works in iPhone while android returns 1x1 image.
Here is my code:
if (AirImagePicker.instance.getGalleryPermissionStatus() ==AirImagePickerPermissionStatus.DENIED
|| AirImagePicker.instance.getGalleryPermissionStatus() ==AirImagePickerPermissionStatus.RESTRICTED)
{
//show popup which inform user that he do not approve the permission
// to access photos/Storage
return;
}
else
{
AirImagePicker.instance.displayImagePicker(-1, -1, false);
}
This works:
camera.displayCamera(onDisplayCameraFinished, 1000, 1000, false, false, "Album");
This doesn't (it creates a 1px x 1px image):
camera.displayCamera(onDisplayCameraFinished, 1000, 1000);
Peaking your AirImage.as I see that you are not setting the maxImageWidth and maxImageHeight, if there is no AlbumName provided, which can be the cause for this glitch.
I do not wish to save captured images locally, or at least not at all in the user's cameraRoll.
Can you correct it? :) Thanks!
The text was updated successfully, but these errors were encountered: