I have a mysql database that contains some images. I get data from php file:
php: $result[$key]['image'] = based64_encode($resultArray[$key]['image']);
Now with the Json file, I get something like this:
Json: {"image":"\/9j\/4Q\/+RXhpZgAATU0AKgAAAAgACgEPAAIAAAAGAAAAhgEQAAIAAAAKAAAAjAESAAMAAAABAAYAAAEaAAUAAAABAAAAlgEbAAUAAAABAAAAngEoAAMAAAABAAIAAE...
I have my quick project and you want to decode the image in UIImage, until I know 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 an image so that it can be displayed?
source share