2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-01 09:50:54 +00:00
qpdf/qpdf/qtest/qpdf/filter-optimize-images.pl
2019-01-04 21:33:14 -05:00

9 lines
98 B
Perl

use strict;
use warnings;
while (<>)
{
s/(reduces size from \d+ to )\d+/$1.../;
print;
}