在 Objective-C 中将字节数组编码为 JPEG 图像

发布于 2024-10-22 12:55:54 字数 196 浏览 1 评论 0原文

我有一个原始数据文件,它是图像数据。现在我需要在 Objective-C 中将原始数据转换为 JPEG 图像。 步骤:

1) 将包含原始数据的文件读入 NSString。 2)将字符串编码为JPEG编码器 3) 创建 JPEG 图像

您能指导我如何实现这一目标吗?

iPhone OS 中是否有任何库可用于编码为 JPEG。

I have a file of raw data , its a image data. Now i need to convert the Raw data to JPEG image in Objective-C.
STEPS:

1) Read the file containing the raw data into NSString.
2) Encode the string to JPEG encoder
3) Create an JPEG image

Can you please guide me how to achieve this?

Is there any library available in iPhone OS to encode into JPEG.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小情绪 2024-10-29 12:55:54

这就是从 JPEG 数据创建 UIImage 的方法:

UIImage *img = [UIImage imageWithData:[NSData dataWithContentsOfFile:…]];

这就是创建 UIImage 的 JPEG 表示的方法:

NSData *data = UIImageJPEGRepresentation(anImage, compressionQuality);

……但只有在写完这篇文章之后,我才意识到您可能想要从原始图像样本数据创建 JPEG 图像?在这种情况下,您可能必须使用正确的图像示例格式创建 CGImage 并使用提供程序提供位图数据,请参阅 CGImageCreate。 (希望有人可以纠正我或提供示例代码。)然后您可以轻松地从 CGImage 创建一个 UIImage 并使用上面的代码。

This is how you create a UIImage from JPEG data:

UIImage *img = [UIImage imageWithData:[NSData dataWithContentsOfFile:…]];

And this is how you create a JPEG representation of a UIImage:

NSData *data = UIImageJPEGRepresentation(anImage, compressionQuality);

…but only after writing this I realized you probably want to create a JPEG image from raw image sample data? In that case you’ll probably have to create a CGImage with the correct image sample format and supply the bitmap data using a provider, see CGImageCreate. (Hopefully somebody can correct me or come up with sample code.) Then you can easily create an UIImage from the CGImage and use the code above.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文