我可以将文本文件存储在图像 EXIF 数据的 tarball 中吗?
我正在为一个网站创建一个复活节彩蛋。我想在图像的 EXIF 注释字段中隐藏一些数据行,这些数据可用于重建包含带有谜语的文本文件的 tarball。这可能吗?如果是这样,如何获取 tarball 的代码/数据,然后将其包含在 EXIF 数据中?
I am working on creating an Easter egg for a website. I want to hide some lines of data in an image`s EXIF comment field which can be used to reconstitute a tarball that contains a text file with a riddle. Is this possible? If so, how do I get the code/data for the tarball which I can then include in the EXIF data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的,但如果您使用旨在保存 ASCII 文本的字段,您可能必须对数据进行编码(例如使用 base64)。
生成 tarball 的最佳方法是使用适当命名的
tar
实用程序。It is possible, although you may have to encode the data (e.g. using base64) if you use a field intended to hold ASCII text.
The best way to generate a tarball is to use the appropriately-named
tar
utility.