mirror of
https://github.com/apache/cordova-plugin-camera.git
synced 2026-02-03 00:06:46 +08:00
- On iPadOS it was possible to configure a popover for setting the position, width and arrow position of the popover. The code used the deprecated `UIPopoverController`, which would have to be fixed. To keep the plugin also maintainable, this was removed. - The popover could repositioned with a `CameraPopoverHandle` on a `window.onorientationchange`. This was removed also. - Removed documentation for popover from `README.md`
88 lines
2.5 KiB
JavaScript
88 lines
2.5 KiB
JavaScript
/*
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @module Camera
|
|
*/
|
|
module.exports = {
|
|
/**
|
|
* @description
|
|
* Defines the output format of `Camera.getPicture` call.
|
|
*
|
|
* @enum {number}
|
|
*/
|
|
DestinationType: {
|
|
/** Return base64 encoded string. DATA_URL can be very memory intensive and cause app crashes or out of memory errors. Use FILE_URI if possible */
|
|
DATA_URL: 0,
|
|
/** Return file uri (content://media/external/images/media/2 for Android) */
|
|
FILE_URI: 1
|
|
},
|
|
/**
|
|
* @enum {number}
|
|
*/
|
|
EncodingType: {
|
|
/** Return JPEG encoded image */
|
|
JPEG: 0,
|
|
/** Return PNG encoded image */
|
|
PNG: 1
|
|
},
|
|
/**
|
|
* @enum {number}
|
|
*/
|
|
MediaType: {
|
|
/** Allow selection of still pictures only. DEFAULT. Will return format specified via DestinationType */
|
|
PICTURE: 0,
|
|
/** Allow selection of video only, ONLY RETURNS URL */
|
|
VIDEO: 1,
|
|
/** Allow selection from all media types */
|
|
ALLMEDIA: 2
|
|
},
|
|
/**
|
|
* @description
|
|
* Defines the output format of `Camera.getPicture` call.
|
|
*
|
|
* @enum {number}
|
|
*/
|
|
PictureSourceType: {
|
|
/**
|
|
* Choose image from the device's photo library.
|
|
**/
|
|
PHOTOLIBRARY: 0,
|
|
/** Take picture from camera */
|
|
CAMERA: 1,
|
|
/**
|
|
* Same as PHOTOLIBRARY, when running on Android, or iOS 14+.
|
|
* On iOS older than 14, an image can only be chosen from the device's Camera Roll album
|
|
* with this setting.
|
|
**/
|
|
SAVEDPHOTOALBUM: 2
|
|
},
|
|
/**
|
|
* @enum {number}
|
|
*/
|
|
Direction: {
|
|
/** Use the back-facing camera */
|
|
BACK: 0,
|
|
/** Use the front-facing camera */
|
|
FRONT: 1
|
|
}
|
|
};
|