QCameraImageCapture Class
The QCameraImageCapture class is used for the recording of media content. More...
Header: | #include <QCameraImageCapture> |
qmake: | QT += multimedia |
Inherits: | QObject and QMediaBindableInterface |
Public Types
enum | CaptureDestination { CaptureToFile, CaptureToBuffer } |
flags | CaptureDestinations |
enum | DriveMode { SingleImageCapture } |
enum | Error { NoError, NotReadyError, ResourceError, OutOfSpaceError, NotSupportedFeatureError, FormatError } |
Properties
- readyForCapture : const bool
- 1 property inherited from QObject
Public Functions
QCameraImageCapture(QMediaObject *mediaObject, QObject *parent = Q_NULLPTR) | |
~QCameraImageCapture() | |
QMultimedia::AvailabilityStatus | availability() const |
QVideoFrame::PixelFormat | bufferFormat() const |
CaptureDestinations | captureDestination() const |
QImageEncoderSettings | encodingSettings() const |
Error | error() const |
QString | errorString() const |
QString | imageCodecDescription(const QString &codec) const |
bool | isAvailable() const |
bool | isCaptureDestinationSupported(CaptureDestinations destination) const |
bool | isReadyForCapture() const |
void | setBufferFormat(const QVideoFrame::PixelFormat format) |
void | setCaptureDestination(CaptureDestinations destination) |
void | setEncodingSettings(const QImageEncoderSettings &settings) |
QList<QVideoFrame::PixelFormat> | supportedBufferFormats() const |
QStringList | supportedImageCodecs() const |
QList<QSize> | supportedResolutions(const QImageEncoderSettings &settings = QImageEncoderSettings(), bool *continuous = Q_NULLPTR) const |
Reimplemented Public Functions
virtual QMediaObject * | mediaObject() const |
- 31 public functions inherited from QObject
- 1 public function inherited from QMediaBindableInterface
Public Slots
void | cancelCapture() |
int | capture(const QString &file = QString()) |
- 1 public slot inherited from QObject
Signals
void | bufferFormatChanged(QVideoFrame::PixelFormat format) |
void | captureDestinationChanged(QCameraImageCapture::CaptureDestinations destination) |
void | error(int id, QCameraImageCapture::Error error, const QString &errorString) |
void | imageAvailable(int id, const QVideoFrame &buffer) |
void | imageCaptured(int id, const QImage &preview) |
void | imageExposed(int id) |
void | imageMetadataAvailable(int id, const QString &key, const QVariant &value) |
void | imageSaved(int id, const QString &fileName) |
void | readyForCaptureChanged(bool ready) |
- 2 signals inherited from QObject
Reimplemented Protected Functions
virtual bool | setMediaObject(QMediaObject *mediaObject) |
- 9 protected functions inherited from QObject
- 1 protected function inherited from QMediaBindableInterface
Additional Inherited Members
- 11 static public members inherited from QObject
- 9 protected functions inherited from QObject
- 1 protected function inherited from QMediaBindableInterface
Detailed Description
The QCameraImageCapture class is used for the recording of media content.
The QCameraImageCapture class is a high level images recording class. It's not intended to be used alone but for accessing the media recording functions of other media objects, like QCamera.
camera = new QCamera; viewfinder = new QCameraViewfinder(); viewfinder->show(); camera->setViewfinder(viewfinder); imageCapture = new QCameraImageCapture(camera); camera->setCaptureMode(QCamera::CaptureStillImage); camera->start(); //on half pressed shutter button camera->searchAndLock(); //on shutter button pressed imageCapture->capture(); //on shutter button released camera->unlock();
See also QCamera.
Member Type Documentation
enum QCameraImageCapture::CaptureDestination
flags QCameraImageCapture::CaptureDestinations
Constant | Value | Description |
---|---|---|
QCameraImageCapture::CaptureToFile | 0x01 | Capture the image to a file. |
QCameraImageCapture::CaptureToBuffer | 0x02 | Capture the image to a buffer for further processing. |
The CaptureDestinations type is a typedef for QFlags<CaptureDestination>. It stores an OR combination of CaptureDestination values.
enum QCameraImageCapture::DriveMode
Constant | Value | Description |
---|---|---|
QCameraImageCapture::SingleImageCapture | 0 | Drive mode is capturing a single picture. |
enum QCameraImageCapture::Error
Constant | Value | Description |
---|---|---|
QCameraImageCapture::NoError | 0 | No Errors. |
QCameraImageCapture::NotReadyError | 1 | The service is not ready for capture yet. |
QCameraImageCapture::ResourceError | 2 | Device is not ready or not available. |
QCameraImageCapture::OutOfSpaceError | 3 | No space left on device. |
QCameraImageCapture::NotSupportedFeatureError | 4 | Device does not support stillimages capture. |
QCameraImageCapture::FormatError | 5 | Current format is not supported. |
Property Documentation
readyForCapture : const bool
This property holds whether the service is ready to capture a an image immediately.
Calling capture() while readyForCapture is false
is not permitted and results in an error.
Access functions:
bool | isReadyForCapture() const |
Notifier signal:
void | readyForCaptureChanged(bool ready) |
Member Function Documentation
QCameraImageCapture::QCameraImageCapture(QMediaObject *mediaObject, QObject *parent = Q_NULLPTR)
Constructs a media recorder which records the media produced by mediaObject.
The parent is passed to QMediaObject.
QCameraImageCapture::~QCameraImageCapture()
Destroys images capture object.
QMultimedia::AvailabilityStatus QCameraImageCapture::availability() const
Returns the availability of this functionality.
QVideoFrame::PixelFormat QCameraImageCapture::bufferFormat() const
Returns the buffer image capture format being used.
See also supportedBufferFormats() and setBufferFormat().
[signal]
void QCameraImageCapture::bufferFormatChanged(QVideoFrame::PixelFormat format)
Signal emitted when the buffer format for the buffer image capture has changed.
[slot]
void QCameraImageCapture::cancelCapture()
Cancel incomplete capture requests. Already captured and queused for proicessing images may be discarded.
[slot]
int QCameraImageCapture::capture(const QString &file = QString())
Capture the image and save it to file. This operation is asynchronous in majority of cases, followed by signals QCameraImageCapture::imageExposed(), QCameraImageCapture::imageCaptured(), QCameraImageCapture::imageSaved() or QCameraImageCapture::error().
If an empty file is passed, the camera backend choses the default location and naming scheme for photos on the system, if only file name without full path is specified, the image will be saved to the default directory, with a full path reported with imageCaptured() and imageSaved() signals.
QCamera saves all the capture parameters like exposure settings or image processing parameters, so changes to camera parameters after capture() is called do not affect previous capture requests.
QCameraImageCapture::capture returns the capture Id parameter, used with imageExposed(), imageCaptured() and imageSaved() signals.
See also isReadyForCapture().
CaptureDestinations QCameraImageCapture::captureDestination() const
Returns the image capture destination being used.
See also isCaptureDestinationSupported() and setCaptureDestination().
[signal]
void QCameraImageCapture::captureDestinationChanged(QCameraImageCapture::CaptureDestinations destination)
Signal emitted when the capture destination has changed.
QImageEncoderSettings QCameraImageCapture::encodingSettings() const
Returns the image encoder settings being used.
See also setEncodingSettings().
Error QCameraImageCapture::error() const
Returns the current error state.
See also errorString().
[signal]
void QCameraImageCapture::error(int id, QCameraImageCapture::Error error, const QString &errorString)
Signals that the capture request id has failed with an error and errorString description.
Note: Signal error is overloaded in this class. To connect to this one using the function pointer syntax, you must specify the signal type in a static cast, as shown in this example:
connect(cameraImageCapture, static_cast<void(QCameraImageCapture::*)(int, QCameraImageCapture::Error, const QString &)>(&QCameraImageCapture::error), [=](int id, QCameraImageCapture::Error error, const QString &errorString){ /* ... */ });
QString QCameraImageCapture::errorString() const
Returns a string describing the current error state.
See also error().
[signal]
void QCameraImageCapture::imageAvailable(int id, const QVideoFrame &buffer)
Signal emitted when the frame with request id is available as buffer.
[signal]
void QCameraImageCapture::imageCaptured(int id, const QImage &preview)
Signal emitted when the frame with request id was captured, but not processed and saved yet. Frame preview can be displayed to user.
QString QCameraImageCapture::imageCodecDescription(const QString &codec) const
Returns a description of an image codec.
[signal]
void QCameraImageCapture::imageExposed(int id)
Signal emitted when the frame with request id was exposed.
[signal]
void QCameraImageCapture::imageMetadataAvailable(int id, const QString &key, const QVariant &value)
Signals that a metadata for an image with request id is available. Also includes the key and value of the metadata.
This signal is emitted between imageExposed and imageSaved signals.
[signal]
void QCameraImageCapture::imageSaved(int id, const QString &fileName)
Signal emitted when the frame with request id was saved to fileName.
bool QCameraImageCapture::isAvailable() const
Returns true if the images capture service ready to use.
bool QCameraImageCapture::isCaptureDestinationSupported(CaptureDestinations destination) const
Returns true if the image capture destination is supported; otherwise returns false.
See also captureDestination() and setCaptureDestination().
[virtual]
QMediaObject *QCameraImageCapture::mediaObject() const
Reimplemented from QMediaBindableInterface::mediaObject().
See also setMediaObject().
[signal]
void QCameraImageCapture::readyForCaptureChanged(bool ready)
Signals that a camera's ready for capture state has changed.
Note: Notifier signal for property readyForCapture.
void QCameraImageCapture::setBufferFormat(const QVideoFrame::PixelFormat format)
Sets the buffer image capture format to be used.
See also bufferFormat(), supportedBufferFormats(), and captureDestination().
void QCameraImageCapture::setCaptureDestination(CaptureDestinations destination)
Sets the capture destination to be used.
See also isCaptureDestinationSupported() and captureDestination().
void QCameraImageCapture::setEncodingSettings(const QImageEncoderSettings &settings)
Sets the image encoding settings.
If some parameters are not specified, or null settings are passed, the encoder choose the default encoding parameters.
See also encodingSettings().
[virtual protected]
bool QCameraImageCapture::setMediaObject(QMediaObject *mediaObject)
Reimplemented from QMediaBindableInterface::setMediaObject().
See also mediaObject().
QList<QVideoFrame::PixelFormat> QCameraImageCapture::supportedBufferFormats() const
Returns the list of supported buffer image capture formats.
See also bufferFormat() and setBufferFormat().
QStringList QCameraImageCapture::supportedImageCodecs() const
Returns a list of supported image codecs.
QList<QSize> QCameraImageCapture::supportedResolutions(const QImageEncoderSettings &settings = QImageEncoderSettings(), bool *continuous = Q_NULLPTR) const
Returns a list of resolutions images can be encoded at.
If non null image settings parameter is passed, the returned list is reduced to resolution supported with partial settings like image codec or quality applied.
If the encoder supports arbitrary resolutions within the supported range, *continuous is set to true, otherwise *continuous is set to false.
See also QImageEncoderSettings::resolution().
© 2017 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.