2

我正在使用一个网络服务,它给我一个整数数组的图像。我已经设法将此数组转换为一个NSData对象,然后UIImage使用下面的代码转换为一个对象。现在我怀疑如何将图像转换为类似的数组。

数组如下所示:

[255,216,255,224,0,16,74,70,73,70,0,1,1,1,0,96,0,96,0,0,255,219,0,67,0,8,6,6,7,6,5,8,7,7,7,9,9,8,10,12,...]

这是我用来将上述数组转换为UIImage.

+ (UIImage *)imageFromBytes:(NSArray *)bytes
{
    unsigned char *buffer = (unsigned char *) malloc(bytes.count);
    int i = 0;
    for (NSDecimalNumber *num in bytes)
        buffer[i++] = num.intValue;
    NSData *data = [NSData dataWithBytes:buffer length:bytes.count];
    free(buffer);

    return [UIImage imageWithData:data];
}

因此,我需要将 aUIImage转换为整数数组(字节数组)。

谁能指出我正确的方向?

4

1 回答 1

1

您可以通过以下方式获取图像的数据:

UIImage *image = [UIImage imageNamed:@"image.png"];
NSData *data = UIImagePNGRepresentation(image);

如果您使用 JPG,则可以使用 UIImageJPEGRepresentation。

然后,提取字节数组:

NSUInteger len = [data length];
Byte *byteData = (Byte*)malloc(len);
memcpy(byteData, [data bytes], len);
free(byteData)

您也可以使用(void)getBytes:(void *)buffer length:(NSUInteger)lengthNSData 中的方法:

[data getBytes:&byteData length:len];
于 2012-05-01T19:25:20.897 回答