22 lines
630 B
TypeScript
22 lines
630 B
TypeScript
|
export interface TakeSnapshotOptions {
|
||
|
/**
|
||
|
* Specifies the quality of the JPEG. (0-100, where 100 means best quality (no compression))
|
||
|
*
|
||
|
* It is recommended to set this to `90` or even `80`, since the user probably won't notice a difference between `90`/`80` and `100`.
|
||
|
*
|
||
|
* @default 100
|
||
|
*/
|
||
|
quality?: number;
|
||
|
|
||
|
/**
|
||
|
* When set to `true`, metadata reading and mapping will be skipped. (`PhotoFile.metadata` will be null)
|
||
|
*
|
||
|
* This might result in a faster capture, as metadata reading and mapping requires File IO.
|
||
|
*
|
||
|
* @default false
|
||
|
*
|
||
|
* @platform Android
|
||
|
*/
|
||
|
skipMetadata?: boolean;
|
||
|
}
|