pve-docs/png-verify.pl
Dietmar Maurer f250356fdf add tools to verify/set DPI densite
This is important if we render images with dblatex/pdftex
2016-11-07 14:08:32 +01:00

17 lines
308 B
Perl
Executable File

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