2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-01 01:40:51 +00:00
qpdf/qpdf/qtest/qpdf/filter-json.pl
2022-05-21 09:43:45 -04:00

10 lines
148 B
Perl

use warnings;
use strict;
while (<>)
{
s/("datafile": ").*?(a.json-.*",)/$1$2/;
s%("/(?:Width|Height)": )\d+(.*)%${1}50${2}%;
print;
}