open IMG, "foo.gif" or die "Couldn't open image: $!\n"; undef $/; $image = ; $hex = unpack("H*", $image); close IMG; while ($txt = substr($hex,0,32,'')) { $txt =~ s/(..)/$1 /g; print $txt."\n"; }