作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在使用 fpdf我想让数组的元素看起来很粗。
$cell3[8][0] = 'Improved Yield : Farmer Business School Training';
分配所有这些值后,我将在 pdf 文档中打印它们
$pdf->FancyTable_2c($head3,$cell3);
$pdf->Cell(8,5,'',0,1);
如何做到这一点?
最佳答案
你需要设置你想要的字体,然后添加单元格,然后将样式改回来:
//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")
希望对你有帮助
关于php - 如何在 fpdf 中使数组的元素变为粗体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15507628/
我是一名优秀的程序员,十分优秀!