Lines Matching refs:photoOutput
29 let photoOutput: camera.PhotoOutput | undefined = undefined;
31 photoOutput = cameraManager.createPhotoOutput(photoProfilesArray[0]);
36 return photoOutput;
46 …Specifically, when [photoOutput.on('photoAvailable')](../../reference/apis-camera-kit/js-apis-came…
50 function setPhotoOutputCb(photoOutput: camera.PhotoOutput) {
51 …// After the callback is set, call capture() of photoOutput to transfer the photo buffer back to t…
52 photoOutput.on('photoAvailable', (errCode: BusinessError, photo: camera.Photo): void => {
163 function capture(captureLocation: camera.Location, photoOutput: camera.PhotoOutput): void {
170 photoOutput.capture(settings, (err: BusinessError) => {
187 function onPhotoOutputCaptureStart(photoOutput: camera.PhotoOutput): void {
188 …photoOutput.on('captureStartWithInfo', (err: BusinessError, captureStartInfo: camera.CaptureStartI…
200 function onPhotoOutputCaptureEnd(photoOutput: camera.PhotoOutput): void {
201 photoOutput.on('captureEnd', (err: BusinessError, captureEndInfo: camera.CaptureEndInfo) => {
214 function onPhotoOutputCaptureReady(photoOutput: camera.PhotoOutput): void {
215 photoOutput.on('captureReady', (err: BusinessError) => {
227 function onPhotoOutputError(photoOutput: camera.PhotoOutput): void {
228 photoOutput.on('error', (error: BusinessError) => {