我有扩展名为 .RGB 的文件,需要在 uiimageview 上显示它。
为此,我需要将 .RGB 格式转换为 .PNG 或 .JPEG 等特定格式,但无法正确处理。我为此尝试了以下代码。
UIImage *image=[UIImage imageNamed:@"Attachment.RGB"];
CGImageRef imageRef=[image CGImage];
UIImage *myImage = [UIImage imageWithCGImage:imageRef];
NSData *pngData = UIImagePNGRepresentation(myImage);
UIImage* imageFinal = [UIImage imageWithData:pngData];
image_view.image=imageFinal;
有在线网站可以将 RGB 转换为可见图像。但我没有找到任何目标 c 的解决方案。谁可以帮我这个事 。
问候 Pagyyy123