How to save the image from BD
to any folder in the project?
I need to create a new folder or save the image to any folder inside the app so I can use it in View
.
My code:
byte[] imageBytes;
var FileImage = new Image();
imageBytes = Convert.FromBase64String(Foto); \ Foto já está preenchida, é do tipo string
FileImage.Source = ImageSource.FromStream(() => new MemoryStream(imageBytes));