UIImage的Base64Encoding不匹配

时间:2016-05-31 11:46:41

标签: ios objective-c uiimage base64 nsdata

我有UIImage,我想使用base 64对其进行编码。然后我将字符串发送到我们的服务器。

我们的服务器使用btoa()对其进行解码。它不能正确地做到这一点。

调试后,我们发现当我从UIImage转换为NSData然后编码时,使用btoa()/atob()进行编码/解码的结果与NSData' s base64EncodedStringWithOptions不匹配。

当我使用UIImage直接将NSData作为dataWithContentsOfFile:而不是从UIImage转换为NSData时,他们确实匹配了什么?使用UIImagePNGRepresentation()

我的问题是,我应该使用返回imagepicker的{​​{1}}。我不想将图像写入文件,然后直接将其作为UIImage读取。效率不高。有办法解决这个问题吗?

1 个答案:

答案 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] ;
}