1

我一直在尝试制作一个 prog 来设置闪光灯。我设法在诺基亚 C7 上运行它而没有任何编译错误,但是当我单击按钮设置闪存时,我收到以下错误:

[Qt 消息] 相机错误:“无法设置闪光模式。”

我使用的代码是:

QCamera *camera = new QCamera;
QCameraExposure *cameraexpo = camera->exposure();
cameraexpo->setFlashMode(QCameraExposure::FlashOn);

我将 Qt 4.7.4 与 Qt Creator 2.2.0 一起使用。

4

1 回答 1

2

尝试检查

bool bIsSupported = cameraexpo->isFlashModeSupported(QCameraExposure::FlashOn);
bool bIsReady = cameraexpo->isFlashReady();

并在某处显示他们的结果

于 2011-08-30T09:52:24.923 回答