背景画像(CMYK として保存された 3693x5136 ピクセル) といくつかのテキストとして画像を追加しながら、TCPDF を使用して A3 サイズの PDF を生成しようとすると、次のコードを使用します。
$this->pdf->SetMargins(0, 0, -1, true);
$this->pdf->SetPrintHeader(false);
$this->pdf->SetPrintFooter(false);
$this->pdf->SetHeaderMargin(0);
$this->pdf->SetFooterMargin(0);
$this->pdf->SetAutoPageBreak(false, 0);
$this->pdf->AddPage('P', 'A3');
$this->pdf->setJPEGQuality(99);
$this->pdf->setImageScale(1);
$this->pdf->Image('path/img/a3bg.jpg', 0, 0, 297, 420, 'JPEG', '', '', FALSE, 300, '', false, false, 0);
$this->pdf->endPage();
$this->pdf->setPageMark();
$this->pdf->Output('file.pdf', 'F');
背景画像は、Reader/Photoshop で開くと奇妙に見え (左)、Firefox または Chrome でプレビューすると問題なく表示されます (右)。何故ですか?