You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "jcesarmobile (JIRA)" <ji...@apache.org> on 2018/11/24 22:24:00 UTC

[jira] [Closed] (CB-3980) Optional flag to call the native Image-Preview after call navigator.camera.getPicture(...)

     [ https://issues.apache.org/jira/browse/CB-3980?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

jcesarmobile closed CB-3980.
----------------------------
    Resolution: Won't Do

Closing as won't do

> Optional flag to call the native Image-Preview after call navigator.camera.getPicture(...)
> ------------------------------------------------------------------------------------------
>
>                 Key: CB-3980
>                 URL: https://issues.apache.org/jira/browse/CB-3980
>             Project: Apache Cordova
>          Issue Type: Improvement
>          Components: cordova-plugin-camera
>    Affects Versions: 2.8.0
>         Environment: iOS 6.1.3, iPhone 3G,
> Android 2.3.6, aAdroid 4.0.3
>            Reporter: Ronny Schleicher
>            Priority: Minor
>              Labels: Triaged
>
> Current behavior if you call the camera:
> {code:javascript}
> navigator.camera.getPicture(this.onSuccess, this.onFail, {
>    quality            : 90,
>    destinationType    : navigator.camera.DestinationType.FILE_URI,
>    sourceType         : navigator.camera.PictureSourceType.CAMERA,
>    correctOrientation : true,
>    targetWidth        : 800,
>    targetHeight       : 800
> });
> {code}
> If a photo is taken with the Camera, then the native 'image preview' is launched. Thus, the user can decide whether it wants to use the photo or not. This is a perfect workflow.
> But call the PHOTOLIBRARY:
> {code:javascript}
> navigator.camera.getPicture(this.onSuccess, this.onFail, {
>    quality            : 90,
>    destinationType    : navigator.camera.DestinationType.FILE_URI,
>    sourceType         : navigator.camera.PictureSourceType.PHOTOLIBRARY,
>    correctOrientation : true,
>    targetWidth        : 800,
>    targetHeight       : 800
> });
> {code}
> When an image is selected by the Photo Library, no native 'image preview' will appear. This is not optimal because the user has previously seen only the small thumnails.
> It would be very good if you could put a 'native preview option flag' into the navigator.camera.getPicture(...) function.
> That would be my suggestion:
> {code:javascript}
> navigator.camera.getPicture(this.onSuccess, this.onFail, {
>    quality            : 90,
>    destinationType    : navigator.camera.DestinationType.FILE_URI,
>    sourceType         : navigator.camera.PictureSourceType.PHOTOLIBRARY,
>    correctOrientation : true,
>    targetWidth        : 800,
>    targetHeight       : 800,
>    showPreview        : true
> });
> {code}
> Is it possible to implement something like that?
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org