LowLagPhotoSequenceCapture.PhotoCaptured 이벤트

정의

사진이 캡처될 때 발생합니다.

// Register
event_token PhotoCaptured(TypedEventHandler<LowLagPhotoSequenceCapture, PhotoCapturedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
LowLagPhotoSequenceCapture::PhotoCaptured_revoker PhotoCaptured(auto_revoke_t, TypedEventHandler<LowLagPhotoSequenceCapture, PhotoCapturedEventArgs const&> const& handler) const;
public event TypedEventHandler<LowLagPhotoSequenceCapture,PhotoCapturedEventArgs> PhotoCaptured;
function onPhotoCaptured(eventArgs) { /* Your code */ }
lowLagPhotoSequenceCapture.addEventListener("photocaptured", onPhotoCaptured);
lowLagPhotoSequenceCapture.removeEventListener("photocaptured", onPhotoCaptured);
- or -
lowLagPhotoSequenceCapture.onphotocaptured = onPhotoCaptured;
Public Custom Event PhotoCaptured As TypedEventHandler(Of LowLagPhotoSequenceCapture, PhotoCapturedEventArgs) 

이벤트 유형

설명

시퀀스에서 캡처된 사진을 가져오기 위해 PhotoCaptured 이벤트에 처리기를 추가합니다. PhotoCapturedEventArgs 는 캡처된 프레임에 대한 데이터를 제공합니다. PhotoCapturedEventArgs.Frame 은 캡처된 사진을 포함하고 PhotoCapturedEventArgs.Thumbnail 에는 썸네일이 포함되어 있습니다.

적용 대상