在 Objective-C 中将字节数组编码为 JPEG 图像
我有一个原始数据文件,它是图像数据。现在我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是从 JPEG 数据创建
UIImage
的方法:这就是创建
UIImage
的 JPEG 表示的方法:……但只有在写完这篇文章之后,我才意识到您可能想要从原始图像样本数据创建 JPEG 图像?在这种情况下,您可能必须使用正确的图像示例格式创建
CGImage
并使用提供程序提供位图数据,请参阅CGImageCreate
。 (希望有人可以纠正我或提供示例代码。)然后您可以轻松地从CGImage
创建一个UIImage
并使用上面的代码。This is how you create a
UIImage
from JPEG data:And this is how you create a JPEG representation of a
UIImage
:…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, seeCGImageCreate
. (Hopefully somebody can correct me or come up with sample code.) Then you can easily create anUIImage
from theCGImage
and use the code above.