Skip to content

Instantly share code, notes, and snippets.

@bortels
Created December 7, 2011 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bortels/1444149 to your computer and use it in GitHub Desktop.
Save bortels/1444149 to your computer and use it in GitHub Desktop.
convert jpg to hex pnm
#!/usr/bin/perl
$f = shift @ARGV || die "syntax: jpg2hex FILENAME\n";
open($fh, "jpegtopnm tomfezicon.jpeg | pnmtoplainpnm |");
$x = <$fh>; print $x;
while (<$fh>) {
@r = split(/\s+/);
foreach $h (@r) { printf("%02x", $h); }
print "\n";
}
close $fh;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment