Compartir a través de


LowLagPhotoSequenceCapture.PhotoCaptured Evento

Definición

Se produce cuando se ha capturado una foto.

// 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) 

Tipo de evento

Comentarios

Agregue un controlador al evento PhotoCaptured para obtener las fotos capturadas en la secuencia. PhotoCapturedEventArgs proporciona los datos de los fotogramas capturados. PhotoCapturedEventArgs.Frame contiene la foto capturada y PhotoCapturedEventArgs.Thumbnail contiene la miniatura.

Se aplica a