X-Git-Url: http://git.shiar.nl/minime.git/blobdiff_plain/3e20200725af5c17b5db24c72840a73c8e1d5a57..e90b36e8f91418105503e74e74bd4b9ecfa4c358:/termimg diff --git a/termimg b/termimg index 4270464..a79ecf6 100755 --- a/termimg +++ b/termimg @@ -37,20 +37,30 @@ my @info = eval { ); } or warn $@; +my $filesize = (stat $file)[7]; +eval { + require Digest::MD5; + open my $bin, '<', $file; + binmode $bin; + my $md5 = Digest::MD5->new->addfile($bin)->b64digest; + push @info, " # $md5 ($filesize)"; +} or warn $@; + open my $pgm, '-|', convert => ( -compress => 'none', '+distort' => SRT => '0,0 1,.56 0', -thumbnail => $size || '66x23', $file => 'pgm:-' ) or die $!; -<$pgm> eq "P2\n" or do { - say for @info; - exit 1; -}; -<$pgm>; <$pgm>; # ignore depth, dimensions -my @ch = split //, " .:coO@"; -while (<$pgm>) { - print $ch[ $_ * @ch >> 8 ] for /\d+/g; - print $info[$. - 4], $/; +if (<$pgm> eq "P2\n") { + my ($width, $height) = split ' ', <$pgm>; + <$pgm>; # ignore depth + my @ch = split //, " .:coO@"; + while (<$pgm>) { + print $ch[ $_ * @ch >> 8 ] for /\d+/g; + say shift @info; + } + substr $_, 0, 0, ' ' x $width for @info; } +say for @info;