Qt 5.12.5 を使用しており、Android デバイスで実行する qt クイック コントロール 2 プロジェクトがあります。
今、私は問題を抱えています。トリガーしないimageSaved
のですか?Camera
以下のボタンをクリックすると、カメラがキャプチャする必要があります
Button{
onClicked: {
camera.imageCapture.capture();
}
}
ボタンimageCaptured
信号をクリックするとphotoPrevew
、キャプチャされた画像が表示されますが、onImageSaved
実行されておらず、ギャラリーにキャプチャされた画像が表示されません!
Camera {
id: camera
position: Camera.BackFace
imageProcessing.whiteBalanceMode: CameraImageProcessing.WhiteBalanceFlash
flash.mode: Camera.FlashRedEyeReduction
imageCapture {
onImageCaptured: { ///this runs after capturing
camera.stop();
console.log("preview="+preview); /// preview=image://camera/preview_1
photoPreview.source = preview ///photoPreview shows the capthed Image
var imgPath = camera.imageCapture.capturedImagePath
console.log("image Path=>"+imgPath); /// path is null
}
onCaptureFailed: {
console.log("onCaptureFailed");
console.log(message);
}
onImageSaved: { ///This not running
console.log("*** onImageSaved ***");
console.log("path=> "+path);
up.loadImageFromFile("file://"+ path,imageOrientation);//this class upload Image to server
}
}
focus {
focusMode: Camera.FocusContinuous
focusPointMode: Camera.FocusPointCenter
}
}
アプリケーション出力
D ViewRootImpl: ViewPostImeInputStage processPointer 0
D ViewRootImpl: ViewPostImeInputStage processPointer 1
D SensorManager: registerListener :: 0, BMC150 Acceleration Sensor, 200000, 0,
E libGLESv1: HWUI Protection: wrong call from hwui context F:ES1-glDeleteTexturesSEC
D libEGL : eglInitialize EGLDisplay = 0x9a3ff074
D libEGL : eglInitialize EGLDisplay = 0x9a3ff074
D libEGL : eglInitialize EGLDisplay = 0x9a3ff074
D ViewRootImpl: ViewPostImeInputStage processPointer 0
D ViewRootImpl: ViewPostImeInputStage processPointer 1
D SensorManager: unregisterListener ::
D Camera : app passed NULL surface
D libEGL : eglTerminate EGLDisplay = 0x9727ee84
D libEGL : eglTerminate EGLDisplay = 0x9727ee84
D Camera : app passed NULL surface
D libEGL : eglTerminate EGLDisplay = 0xaea744cc
D libEGL : eglTerminate EGLDisplay = 0xaea744b4
D MYAPP: qml: preview=image://camera/preview_1
D MYAPP: qml: image Path=>