Ejemplo n.º 1
0
 public void SetPhotoResult(byte[] image, int width = -1, int height = -1)
 {
     OnPhotoResult?.Invoke(new PhotoResultEventArgs(image, width, height));
 }
Ejemplo n.º 2
0
 public void Cancel()
 {
     OnPhotoResult?.Invoke(new PhotoResultEventArgs());
 }
Ejemplo n.º 3
0
 public void SetPhotoResult(byte[] image, int width = -1, int height = -1)
 {
     WinePicture.Source = ImageSource.FromStream(() => new MemoryStream(image));
     OnPhotoResult?.Invoke(new PhotoResultEventArgs(image, width, height));
 }