gpt4 book ai didi

ios - 如何在ios中将字节数组转换为图像

转载 作者:行者123 更新时间:2023-12-01 17:53:38 26 4
gpt4 key购买 nike

今天我的任务是将字节数组转换为图像

首先我尝试将图像转换为字节数组:-

为了将图像转换为字节数组,我们首先要做的是将特定图像 [UIImage] 转换为 NSData。然后我们将转换那个 NSData 到字节数组。这里我给出示例代码,通过...

//Converting UIImage to NSData
UIImage *image = [UIImage imageNamed: @"photo-04.jpg"];

NSData *imageData = UIImagePNGRepresentation(image);

//Converting NSData to Byte array
NSUInteger len = [imageData length];
NSLog(@"Byte Lendata1 %lu",(unsigned long)len);

Byte *byteData = (Byte*)malloc(len);
memcpy(byteData, [imageData bytes], len);

我正在尝试将字节转换为 imageView

 const unsigned char *bytes = [imageData bytes];

NSUInteger length = [imageData length];

NSMutableArray *byteArray = [NSMutableArray array];

for (NSUInteger i = 0; i < length; i++) {
[byteArray addObject:[NSNumber numberWithUnsignedChar:bytes[i]]];
}
NSDictionary *dictJson = [NSDictionary dictionaryWithObjectsAndKeys:
byteArray, @"photo",
nil];
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dictJson options:0 error:NULL];
NSLog(@"");
UIImage *image1 = [UIImage imageWithData:jsonData];

UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 100, 50)];


imgView.image=image1;

我得到了将图像转换为字节数组的输出,但我想将字节数组转换为图像所以请先帮助我谢谢。

最佳答案

首先,您需要将字节转换为NSData

NSData *imageData = [NSData dataWithBytes:bytesData length:length];

然后,将数据转换回图像。

UIImage *image = [UIImage imageWithData:imageData];

而且我建议大家在出现问题的时候先去查资料。

这里是全部:

UIImage *image = [UIImage imageNamed:@"RAC.png"];

NSData *imageData = UIImagePNGRepresentation(image);
// UIImageJPGRepresentation also work

NSInteger length = [imageData length];

Byte *byteData = (Byte*)malloc(length);
memcpy(byteData, [imageData bytes], length);

NSData *newData = [NSData dataWithBytes:byteData length:length];

UIImage *newImage = [UIImage imageWithData:newData];

UIImageView *imageView = [[UIImageView alloc] initWithImage:newImage];
imageView.frame = CGRectMake(50, 50, 100, 100);
[self.view addSubview:imageView];

关于ios - 如何在ios中将字节数组转换为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22316608/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com