]> git.proxmox.com Git - pve-docs.git/blame - png-cleanup.pl
qm-cpu-settings.png: new screenshot
[pve-docs.git] / png-cleanup.pl
CommitLineData
f250356f
DM
1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6my $infile = shift ||
7 die "no input file specified\n";
8
9my $outfile = shift ||
10 die "no outpu file specified\n";
11
12# use the following to verify image attributes
13# identify -verbose <filename>
14
15# set DPI to 146, so that we can display 1024 pixels (page width)
16
17my $dpi = 146;
18
19system("convert -units PixelsPerInch $infile -density $dpi $outfile");
20
21# identify should return the same value
22# system("identify -units PixelsPerInch -format '%x x %y' $outfile");