This cordova plugin is an alternative to the official cordova plugin (camera). It starts a custom camera: image overlay with an opacity slider, user-defined color of the buttons, activating/deactivating functions.
+ **imgBackgroundBase64OtherOrientation :** Alternate overlay image (if device's orientation has changed since app started). Should be in base64 format. If `null`, use `imgBackgroundBase64` and resize image.
+ **saveInGallery :** Save picture to the camera gallery. `true` : Activate option. `false` : Deactivate option.
- **Type :** `boolean`
- **Default :** `false`
+ **cameraBackgroundColor :** Color of the camera button.
- **Type :** `string`
- **Default :** `"#e26760"`
- **Notes :**
+ An incorrect value or a `null` value means a transparency effect.
+ See the [`parseColor()`](http://developer.android.com/reference/android/graphics/Color.html#parseColor(java.lang.String)) method for the format of colors.
+ **cameraBackgroundColorPressed :** Color of the camera button when it is pressed.
- **Type :** `string`
- **Default :** `"#dc453d"`
- **Notes :**
+ An incorrect value or a `null` value means a transparency effect.
+ See the [`parseColor()`](http://developer.android.com/reference/android/graphics/Color.html#parseColor(java.lang.String)) method for the format of colors.
+ **quality :** Quality of the picture.
- **Type :** `integer`
- **Default :** `100`
- **Notes :**
+ A value between 0 and 100. An incorrect value means the default value.
+ See the [`compress()`](http://developer.android.com/reference/android/graphics/Bitmap.html) method for more informations.
+ **opacity :** Activate/deactivate the opacity option for the overlay image. `true` : Activate option. `false` : Deactivate option.