pmg-docs/png-verify.pl
2017-02-22 07:15:00 +01:00

17 lines
312 B
Perl
Executable File

#!/usr/bin/perl
use strict;
use warnings;
my $infile = shift ||
die "no input file specified\n";
my $dpcm = 58; # expected
my $tmp = `identify -units PixelsPerCentimeter -format '%x x %y' $infile`;
die "got unexpected density '$tmp' (fix with png-cleanup.pl)\n"
if $tmp ne "$dpcm x $dpcm";
exit 0;