2
How to save the image from BD
in any existing folder in the project ?
I need to create a new folder or save the image to any folder inside the app in order to use it in one 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));
Okay, and what’s the difficulty you’re finding? In saving the image, in creating a new directory ?
– JcSaint
@Jcsaint I don’t know how to do this, I never did. Could you give me a hand ?
– AndreeH
I could only do it so far @Jcsaint
– AndreeH