Skip to content

Instantly share code, notes, and snippets.

@webmaster128
Created August 5, 2015 12:39
Show Gist options
  • Save webmaster128/8cbace94767faf5d8d9b to your computer and use it in GitHub Desktop.
Save webmaster128/8cbace94767faf5d8d9b to your computer and use it in GitHub Desktop.
Hexdump JPEG and PNG header data
cat kullo_support.png | head -c 64 | hexdump -C
00000000 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 |.PNG........IHDR|
00000010 00 00 00 f0 00 00 00 f0 08 06 00 00 00 3e 55 e9 |.............>U.|
00000020 92 00 00 00 04 73 42 49 54 08 08 08 08 7c 08 64 |.....sBIT....|.d|
00000030 88 00 00 00 09 70 48 59 73 00 00 03 52 00 00 03 |.....pHYs...R...|
00000040
cat robert_firscher.jpg | head -c 64 | hexdump -C
00000000 ff d8 ff e0 00 10 4a 46 49 46 00 01 01 01 00 48 |......JFIF.....H|
00000010 00 48 00 00 ff db 00 43 00 01 01 01 01 01 01 01 |.H.....C........|
00000020 01 01 01 01 01 01 02 02 03 02 02 02 02 02 04 03 |................|
00000030 03 02 03 05 04 05 05 05 04 04 04 05 06 07 06 05 |................|
00000040
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment