Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/image/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/assembly/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Image 使用Exiftool提取二进制数据_Image_Binary Data_Steganography_Exiftool - Fatal编程技术网

Image 使用Exiftool提取二进制数据

Image 使用Exiftool提取二进制数据,image,binary-data,steganography,exiftool,Image,Binary Data,Steganography,Exiftool,我正在做一个隐写术挑战。我有一个jpeg文件,当我用Exiftool查看它的元数据时,我看到了一些有趣的东西 Red Tone Reproduction Curve : (Binary data 64 bytes, use -b option to extract) Green Tone Reproduction Curve : (Binary data 64 bytes, use -b option to extract) Blue Tone Reproduction Curve

我正在做一个隐写术挑战。我有一个jpeg文件,当我用Exiftool查看它的元数据时,我看到了一些有趣的东西

Red Tone Reproduction Curve     : (Binary data 64 bytes, use -b option to extract)
Green Tone Reproduction Curve   : (Binary data 64 bytes, use -b option to extract)
Blue Tone Reproduction Curve    : (Binary data 64 bytes, use -b option to extract)
所以我认为可能有一些有趣的东西,但我不确定如何提取二进制数据。当我使用以下命令时:
exiftool-b-RedTRC name of picture.jpeg
,我会收到以下消息:
curv ck  ?Q!)2.FQw]kpz | i}0
。 我认为这个消息可能是某种东西,但我不知道如何提取二进制数据以及它可能是哪种类型的文件。有什么帮助吗?

该“消息”只是命令行上显示的该标记的二进制数据。
curv
部分是TRC的ID值(具体请参见
tagbase.sig=swap((长)0x63757276L);/*'curv'*/

要将数据提取到文件中,只需重定向输出。
exiftool-b-RedTRC name of picture.jpeg>RedTRC.dat

该“消息”只是命令行上显示的该标记的二进制数据。
curv
部分是TRC的ID值(具体请参见
tagbase.sig=swap((长)0x63757276L);/*'curv'*/

要将数据提取到文件中,只需重定向输出。

exiftool-b-RedTRC图片名称.jpeg>RedTRC.dat

在exiftool论坛上。在exiftool论坛上。所以,我想这不是什么有趣的事情。谢谢;)@StarGeekSo,我想这不是什么有趣的事情。谢谢;)@星际奇客