I have a mysql database which contains some images. I receive the data from a php file:
php:
$result[$key]['image'] = based64_encode($resultArray[$key]['image']);
Now with a Json file, I get something like this:
Json:
{"image":"/9j/4Q/+RXhpZgAATU0AKgAAAAgACgEPAAIAAAAGAAAAhgEQAAIAAAAKAAAAjAESAAMAAAABAAYAAAEaAAUAAAABAAAAlgEbAAUAAAABAAAAngEoAAMAAAABAAIAAE...
I have my swift project and want to decode the image into a UIImage, so far I have no idea how to decode the image. I have the following.
Swift:
Alamofire.request(.GET, url).responseJSON { (response) -> Void in
if let JSON = response.result.value as? [[String : AnyObject]]{
for json in JSON{
JSON
let encodedImage = json["image"]
let imageData = NSData(base64EncodedString: encodedImage)
}
}
How can I decode the image so that I can display it?
See Question&Answers more detail:os