Change default for SF_FlateLzwDecode::columns to 1

This commit is contained in:
m-holger 2023-11-22 16:15:09 +00:00
parent 81823f4032
commit 9146f1f0fd
5 changed files with 15 additions and 3 deletions

View File

@ -11,7 +11,7 @@ SF_FlateLzwDecode::SF_FlateLzwDecode(bool lzw) :
lzw(lzw),
// Initialize values to their defaults as per the PDF spec
predictor(1),
columns(0),
columns(1),
colors(1),
bits_per_component(8),
early_code_change(true)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -16,7 +16,7 @@ cleanup();
my $td = new TestDriver('specialized-filter');
my $n_tests = 3;
my $n_tests = 5;
my $n_compare_pdfs = 1;
# The PDF file was submitted on bug #83 on github. All the PNG filters
@ -39,6 +39,18 @@ $td->runtest("stream with tiff predictor",
{$td->FILE => "tiff-predictor.out",
$td->EXIT_STATUS => 0},
$td->NORMALIZE_NEWLINES);
# TC:SF_FlateLzwDecode PNG filter
# PDF:Table 8:Columns
# The test file is invalid as it does not actually use one column (as is implied by the missing
# key). However png-filters-1-column.pdf is the same file with /Columns explicitely set to 1,
# and displays the same as png-filters-no-columns.pdf and png-filters-no-columns-decoded.pdf.
$td->runtest("decode flate no /Columns",
{$td->COMMAND => "qpdf --static-id --compress-streams=n --decode-level=all" .
" png-filters-no-columns.pdf a.pdf"},
{$td->STRING => "", $td->EXIT_STATUS => 0},
$td->NORMALIZE_NEWLINES);
$td->runtest("check output",
{$td->FILE => "a.pdf"},
{$td->FILE => "png-filters-no-columns-decoded.pdf"});
cleanup();
$td->report(calc_ntests($n_tests, $n_compare_pdfs));