Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、私は FPDF を使用しています。背景色の設定に関して問題があります。
現在私は使用しています
$this->_FpdfGenerator->SetFillColor('239', 0, 0);
また、私はこれを試しました
$this->_FpdfGenerator->SetFillColor(239, 0, 0);
ただし、背景色は変更されていません。
ドキュメントを見ると、緑と青のコンポーネント値を指定して色を設定する必要があります。
そうしないと、グレーレベルになります。
SetFillColor
mpdf->SetFillColor('RED'); // Just Make the 7th Parameter Equal to TRUE $mpdf->WriteCell(38, 10, 'HeLLOO', 1, 0, 'C', TRUE);