QtMultimedia.CameraExposure

An interface for exposure related camera settings. More...

Import Statement: import QtMultimedia 5.4

Properties

Methods

Detailed Description

This type is part of the QtMultimedia 5.0 module.

CameraExposure allows you to adjust exposure related settings like aperture and shutter speed, metering and ISO speed.

It should not be constructed separately, instead the exposure property of the a Camera should be used.

import QtQuick 2.0
import QtMultimedia 5.0
Camera {
id: camera
exposure.exposureCompensation: -1.0
exposure.exposureMode: Camera.ExposurePortrait
}

Several settings have both an automatic and a manual mode. In the automatic modes the camera software itself will decide what a reasonable setting is, but in most cases these settings can be overridden with a specific manual setting.

For example, to select automatic shutter speed selection:

    camera.exposure.setAutoShutterSpeed()

Or for a specific shutter speed:

    camera.exposure.manualShutterSpeed = 0.01 // 10ms

You can only choose one or the other mode.

Property Documentation

aperture : real

This property holds the current lens aperture as an F number (the ratio of the focal length to effective aperture diameter).

See also manualAperture and setAutoAperture().


exposureCompensation : real

This property holds the adjustment value for the automatically calculated exposure. The value is in EV units.


exposureMode : enumeration

This property holds the camera exposure mode.

The mode can be one of the following:

ValueDescription
Camera.ExposureManualManual mode.
Camera.ExposureAutoAutomatic mode.
Camera.ExposureNightNight mode.
Camera.ExposureBacklightBacklight exposure mode.
Camera.ExposureSpotlightSpotlight exposure mode.
Camera.ExposureSportsSpots exposure mode.
Camera.ExposureSnowSnow exposure mode.
Camera.ExposureBeachBeach exposure mode.
Camera.ExposureLargeApertureUse larger aperture with small depth of field.
Camera.ExposureSmallApertureUse smaller aperture.
Camera.ExposurePortraitPortrait exposure mode.
Camera.ExposureModeVendorThe base value for device specific exposure modes.

iso : int

This property holds the sensor's ISO sensitivity value.


manualAperture : real

This property holds the aperture (F number) value for capturing photos.

If the value is less than zero, the camera automatically determines an appropriate aperture value.

aperture, setAutoAperture()


manualIso : real

This property holds the ISO settings for capturing photos.

If a negative value is specified, the camera will automatically determine an appropriate value.

See also iso and setAutoIsoSensitivity().


manualShutterSpeed : real

This property holds the shutter speed value (in seconds). If the value is less than zero, the camera automatically determines an appropriate shutter speed.

shutterSpeed, setAutoShutterSpeed()


meteringMode : enumeration

This property holds the camera metering mode (how exposure is balanced).

The mode can be one of the following:

ValueDescription
Camera.MeteringMatrixA matrix of sample points is used to measure exposure.
Camera.MeteringAverageAn average is used to measure exposure.
Camera.MeteringSpotA specific location (spotMeteringPoint) is used to measure exposure.

shutterSpeed : real

This property holds the camera's current shutter speed value in seconds. To affect the shutter speed you can use the manualShutterSpeed property and setAutoShutterSpeed().


spotMeteringPoint : QPointF

The property holds the frame coordinates of the point to use for exposure metering. This point is only used in spot metering mode, and it typically defaults to the center (0.5, 0.5).


Method Documentation

setAutoAperture()

Turn on auto aperture selection. The manual aperture value is reset to -1.0


setAutoIsoSensitivity()

Turn on auto ISO sensitivity selection. The manual ISO value is reset to -1.


setAutoShutterSpeed()

Turn on auto shutter speed selection. The manual shutter speed value is reset to -1.0