Closed nilsegger closed 5 years ago
I was able to work out my issue. I am using Dart for my website, there I was fetching the image as an array of ints, I had to type square brackets around my array to get it working. I am yet unable to get my example to work... Maybe my Dart Solution will be of some help:
var imageData = List<int>;
var profilePicture = new File([imageData], 'image name', {'type': 'image/png'});
filePond.addFile(profilePicture);
When I add an image as a blob, the image preview wont show. I don't know what I'm doing wrong and I haven't been able to find any solution which worked.
Code: