3

配列の要素を太字にしたい fpdf を使用しています。

$cell3[8][0] = 'Improved Yield : Farmer Business School Training';

これらすべての値を割り当てた後、それらをpdfドキュメントに印刷します

$pdf->FancyTable_2c($head3,$cell3);
$pdf->Cell(8,5,'',0,1);

これを行う方法?

4

2 に答える 2

7

必要なフォントを設定し、セルを追加してからスタイルを元に戻す必要があります。

//declare a style
$pdf->SetFont('Arial', '', 10);
$pdf->Cell(20,10,"This will be regular Arial");

//declare another style, overwrites previous one
$pdf->SetFont('Arial', 'B', 10);
$pdf->Cell(20,10,"This will be Arial Bold");

//set it back to normal
$pdf->SetFont('Arial', '', 10);
$pdf->Cell(20,10,"This will be regular Arial once more")

それが役に立てば幸い

于 2013-06-22T11:09:38.537 に答える
1

を使用しSetFontます。パラメータはstyleあなたが探しているものです。

于 2013-03-19T18:32:54.433 に答える