Swift - 将base64编码图像上传到php并显示图像

时间:2015-04-11 18:11:45

标签: php ios mysql swift uiimage

目前,我正在尝试将base64编码的图像上传到php服务器,然后将该base64字符串存储在MySQL数据库中。目前,代码正在上传数据并将其存储到MySQL数据库中。但是,当我尝试通过指定用于检索图像的URL来检索图像时,会显示带有问号的缺失图像链接。我不知道为什么会发生这种情况,因为上传和显示base64编码的图像似乎与我的Android应用程序运行良好。

以下是我用来编码并上传到服务器的Swift代码:

    let image: UIImage = imgProfilePic.image!

    let size = CGSizeApplyAffineTransform(image.size, CGAffineTransformMakeScale(0.3, 0.3))
    let hasAlpha = false
    let scale: CGFloat = 0.0 // Automatically use scale factor of main screen

    UIGraphicsBeginImageContextWithOptions(size, !hasAlpha, scale)
    image.drawInRect(CGRect(origin: CGPointZero, size: size))

    let scaledImage = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()

    var imageData = UIImageJPEGRepresentation(scaledImage, 0.9)
    var base64String = imageData.base64EncodedStringWithOptions(NSDataBase64EncodingOptions(rawValue: 0)) // encode the image

    var cd = CoreDataUser(pstrContext: "this")

    var params = "strUsername=" + cd.getUsername()
    params = params + "&strPassword=" + cd.getPassword()
    params = params + "&blbProfilePic=" + base64String

这是PHP代码,其中base64字符串正在解码并显示在浏览器中。这适用于我的Android代码上传的图片,但它只是显示我的Swift代码上传的图片的图像链接损坏。

 if ($rows) { 
    foreach ($rows as $row) { 
    $data = base64_decode($row["fblbProfilePic"]);
    $image = imagecreatefromstring($data);
    header('Content-Type: Image/jpeg');
    imagejpeg($image);
//file_put_contents("test.jpg", $data);
//var_dump($data);

    //echo base64_decode($row["fblbPicture"]);
    /    /echo '<img src="data:image/jpg;base64,' . $row["fblbPicture"]     . '" />';
     }

3 个答案:

答案 0 :(得分:2)

我能够通过对base64字符串进行百分比编码来实现这一点,然后再将其发布到PHP服务器。希望这有助于其他人。

答案 1 :(得分:2)

在play2win的自我答案背后提供一些有用的Swift 3.0代码:

let data:Data = UIImagePNGRepresentation(myUIImageView.image!)!
let base64String:String = data.base64EncodedString(options: Data.Base64EncodingOptions(rawValue: 0))
let imageStr:String = base64String.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)!

答案 2 :(得分:0)

您应首先将base64图像解码为数据并保存在服务器端,以便我们获取您想要的响应的保存位置路径。 希望这能帮到你...