在swift 2.3中将UIImage转换为Base64

时间:2016-12-09 15:14:35

标签: ios swift laravel uiimage base64

我正在尝试使用swift 2.3将UIImage转换为Base64编码字符串,但编码后的字符串无法在服务器上发布。

服务器抛出错误,如“处理异常时抛出异常(ErrorException:iconv():检测到输入字符串中的非法字符”)。

我可以从编码的字符串中删除特殊字符,也可以删除源代码中的一些问题。我在下面提到了我的源代码。

 //*************** Image Picker function ********* //
 func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject])
 {
    let chosenImage = info[UIImagePickerControllerOriginalImage] as! UIImage

    self.imageData = UIImageJPEGRepresentation(chosenImage, 0)         
    self.imageString = self.imageData!.base64EncodedStringWithOptions(NSDataBase64EncodingOptions())
   self.webServiceForShareData()
   dismissViewControllerAnimated(true, completion: nil)
 }//******** Image Picker End **** //



 func webServiceForShareData()
{
 let allowedCharacters = NSCharacterSet.URLQueryAllowedCharacterSet().mutableCopy() as! NSMutableCharacterSet
    allowedCharacters.removeCharactersInString("+/=")


     //****************** Alamofire Request *********** // 
    Alamofire.request(.POST,"URL",parameters:["pic":self.imageString != nil ? (self.imageString!.stringByAddingPercentEncodingWithAllowedCharacters(allowedCharacters))! :"", "txt" : self.txtTest.text!, "on_twitter" : self.twitterSuccess, "on_facebook" : self.facebookSuccess],headers : ["Authorization":(NSUserDefaults.standardUserDefaults().objectForKey("oneSocialToken") as! String)])
        .responseJSON
        { 
             response in
             print(response.request)  // original URL request
             print(response.response) // URL response
             print(response.data)     // server data
             print(response.result)   // result of response serializatio
            if let JSON: NSDictionary = response.result.value as? NSDictionary
            {
                print(JSON)
            }
       }
 //*************** Alamofire Request End *************** //

 }// *** Function End 

1 个答案:

答案 0 :(得分:0)

来自docs

  

选项
  一个掩码,指定Base-64编码数据的选项。 NSDataBase64EncodingOptions中给出了可能的值。

因此,您需要将NSDataBase64EncodingOptions()替换为NSDataBase64EncodingOptions().[one_of_the_following_values]

  

<强> NSDataBase64Encoding64CharacterLineLength
  将最大行长度设置为64个字符,然后插入行结尾。

     

<强> NSDataBase64Encoding76CharacterLineLength
  将最大行长度设置为76个字符,然后插入行结尾。

     

<强> NSDataBase64EncodingEndLineWithCarriageReturn
  设置最大行长度时,请指定要插入的行应包含回车符。

     

<强> NSDataBase64EncodingEndLineWithLineFeed
  设置最大行长度时,请指定结束插入的行应包含换行符。

来源:Apple docs