2

私には奇妙な例外があります。ユーザーがキャプチャ後に直接アップロードされるいくつかの写真を作成できるように、ページで PhoneCamera API を使用します。

私のコード:

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    base.OnNavigatedTo(e);

    _mediaLibrary = new MediaLibrary();

    // Initialize the camera object
    _phoneCamera = new PhotoCamera(CameraType.Primary);
    _phoneCamera.Initialized += CamInitialized;
    _phoneCamera.AutoFocusCompleted += PhoneCamera_AutoFocusCompleted;
    _phoneCamera.CaptureImageAvailable += PhoneCamera_CaptureImageAvailable;

    // Display the camera feed in the UI
    ViewfinderBrush.SetSource(_phoneCamera);

    // Rotation for transform
    ViewfinderTransform.Rotation = _phoneCamera.Orientation;
}

protected override void OnNavigatingFrom(NavigatingCancelEventArgs e)
{
    if (_phoneCamera != null)
    {
        // Cleanup
        _phoneCamera.Dispose();
        _phoneCamera.Initialized -= CamInitialized;
        _phoneCamera.AutoFocusCompleted -= PhoneCamera_AutoFocusCompleted;
        _phoneCamera.CaptureImageAvailable -= PhoneCamera_CaptureImageAvailable;

        if (_cameraInizialized)
        {
            CameraButtons.ShutterKeyHalfPressed -= CameraButtons_ShutterKeyHalfPressed;
            CameraButtons.ShutterKeyPressed -= CameraButtons_ShutterKeyPressed;
        }
    }

    base.OnNavigatingFrom(e);
}

private void CamInitialized(object sender, CameraOperationCompletedEventArgs e)
{
    if (e.Succeeded)
    {
        // Set flashmode
        Dispatcher.BeginInvoke(() => {  _phoneCamera.FlashMode = FlashMode.Auto; });

        // Subscribe to hardeware-button-events
        CameraButtons.ShutterKeyHalfPressed += CameraButtons_ShutterKeyHalfPressed;
        CameraButtons.ShutterKeyPressed += CameraButtons_ShutterKeyPressed;

        _cameraInizialized = true;
    }
    else
    {
        // Show error message
    }
}

初期化されたイベントが発生すると、すべてが正常に機能します。しかし、カメラの初期化中にユーザーが電話のホームボタンをタップすると、例外が発生しました。(初期化されたイベントは発生しません)。

ユーザーが戻るボタンで戻ると、次の例外が発生しました。

[Type]:[AggregateException]
[ExceptionMessage]:[One or more errors occurred.]
[StackTrace]:[
    at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions)
    at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout, CancellationToken cancellationToken)
    at Microsoft.Devices.Camera.OpenCaptureDevice()
    at Microsoft.Devices.Camera.<>c__DisplayClass2.<InitializeVideoSession>b__0()]
[InnerExceptions]:[[[Type]:[InvalidOperationException]
    [Message]:[The text associated with this error code could not be found.
    Unable to acquire the camera. You can only use this class while in the foreground.]

他の多くのオプションを試しましたが、何も機能しません。なぜこのエラーが発生したのかわかりません。どこで、どのような状況で発生するかはわかっていますが。

どんな助けでも大歓迎です。ありがとうございました。

4

0 に答える 0