我有UIImage
,我想使用base 64对其进行编码。然后我将字符串发送到我们的服务器。
我们的服务器使用btoa()
对其进行解码。它不能正确地做到这一点。
调试后,我们发现当我从UIImage转换为NSData然后编码时,使用btoa()/atob()
进行编码/解码的结果与NSData' s base64EncodedStringWithOptions
不匹配。
当我使用UIImage
直接将NSData
作为dataWithContentsOfFile:
而不是从UIImage
转换为NSData
时,他们确实匹配了什么?使用UIImagePNGRepresentation()
我的问题是,我应该使用返回imagepicker
的{{1}}。我不想将图像写入文件,然后直接将其作为UIImage
读取。效率不高。有办法解决这个问题吗?
答案 0 :(得分:0)
尝试使用base64编码:
+ (NSString*)base64forData:(NSData*)theData
{
const uint8_t* input = (const uint8_t*)[theData bytes];
NSInteger length = [theData length];
static char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
NSMutableData* data = [NSMutableData dataWithLength:((length + 2) / 3) * 4];
uint8_t* output = (uint8_t*)data.mutableBytes;
NSInteger i;
for (i=0; i < length; i += 3) {
NSInteger value = 0;
NSInteger j;
for (j = i; j < (i + 3); j++) {
value <<= 8;
if (j < length) {
value |= (0xFF & input[j]);
}
}
NSInteger theIndex = (i / 3) * 4;
output[theIndex + 0] = table[(value >> 18) & 0x3F];
output[theIndex + 1] = table[(value >> 12) & 0x3F];
output[theIndex + 2] = (i + 1) < length ? table[(value >> 6) & 0x3F] : '=';
output[theIndex + 3] = (i + 2) < length ? table[(value >> 0) & 0x3F] : '=';
}
return [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding] ;
}