AdvancedPhotoCapture.AllPhotosCaptured 이벤트

정의

고급 사진 캡처에 필요한 모든 프레임이 캡처된 경우에 발생합니다.

// Register
event_token AllPhotosCaptured(TypedEventHandler<AdvancedPhotoCapture, IInspectable const&> const& handler) const;

// Revoke with event_token
void AllPhotosCaptured(event_token const* cookie) const;

// Revoke with event_revoker
AdvancedPhotoCapture::AllPhotosCaptured_revoker AllPhotosCaptured(auto_revoke_t, TypedEventHandler<AdvancedPhotoCapture, IInspectable const&> const& handler) const;
public event TypedEventHandler<AdvancedPhotoCapture,object> AllPhotosCaptured;
function onAllPhotosCaptured(eventArgs) { /* Your code */ }
advancedPhotoCapture.addEventListener("allphotoscaptured", onAllPhotosCaptured);
advancedPhotoCapture.removeEventListener("allphotoscaptured", onAllPhotosCaptured);
- or -
advancedPhotoCapture.onallphotoscaptured = onAllPhotosCaptured;
Public Custom Event AllPhotosCaptured As TypedEventHandler(Of AdvancedPhotoCapture, Object) 

이벤트 유형

설명

고급 사진 캡처 작업을 수행하려면 결과 이미지를 생성하기 위해 여러 프레임을 캡처하고 처리해야 할 수 있습니다. 이 이벤트는 원본 프레임이 캡처된 시점을 알립니다. 캡처된 프레임의 이미지 처리가 완료된 후에만 발생하는 CaptureAsync 호출이 완료되기를 기다리는 대신 캡처 디바이스를 사용할 수 있는 즉시 다른 고급 사진 캡처를 시작할 수 있습니다.

적용 대상