Skip to content

Instantly share code, notes, and snippets.

@joaomarcos96
Created August 26, 2019 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaomarcos96/327e322ad11340afce3fbda6edb4bd91 to your computer and use it in GitHub Desktop.
Save joaomarcos96/327e322ad11340afce3fbda6edb4bd91 to your computer and use it in GitHub Desktop.
Xamarin iOS - Stream to UIImage
using (var imageData = NSData.FromStream(myStream))
using (var image = UIImage.LoadFromData(imageData))
{
myUiImageView.Image = image;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment