将 libTiff 中的 Tiff 数据类型转换为 ios nsdata
我正在使用 libtiff 创建 tif 图像。任何人都可以帮助如何将 TIFF 转换回 nsdata。
谢谢
I am using libtiff to create tif images. Can any one help how to convert TIFF back to nsdata.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
方便的是,CFData 与 NSData 是免费桥接的,因此您基本上可以将其直接转换为 NSData 对象,而无需执行任何操作。只需将行替换
为
And that's your tiffData 作为自动释放的 NSData 对象,即可根据需要使用。
Conveniently, CFData is toll-free bridged with NSData, so you can basically turn it directly into an NSData object without doing anything. Just replace the line
With
And that's your tiffData as an autoreleased NSData object, ready to use as you wish.
感谢社区的帮助。
我找到了答案。只需使用相同的功能即可。就是这样。直到现在我才想起它。
Thanks for help by the community.
I figured out the answer. Just use the same function. that's it. It did not flash to me until now.