我正在尝试为 fpdf 中的特定文本“块”设置字母间距。我已经搜索并且只找到了一种设置整个文档的字母间距的方法,即使这样也没有用。文本发布到 php fpdf 生成器。
$pdf->SetFont('Arial','b',85, LetterSpacing Here?);
有什么帮助吗?
基于其他提供的答案,我扩展了我们使用的 FPDF 类,以便下划线考虑用户定义的字母间距。
<?php
class Custom_FPDF extends FPDF
{
protected $FontSpacingPt; // current font spacing in points
protected $FontSpacing; // current font spacing in user units
function SetFontSpacing($size)
{
if($this->FontSpacingPt==$size)
return;
$this->FontSpacingPt = $size;
$this->FontSpacing = $size/$this->k;
if ($this->page>0)
$this->_out(sprintf('BT %.3f Tc ET', $size));
}
protected function _dounderline($x, $y, $txt)
{
// Underline text
$up = $this->CurrentFont['up'];
$ut = $this->CurrentFont['ut'];
$w = $this->GetStringWidth($txt)+$this->ws*substr_count($txt,' ')+(strlen($txt)-1)*$this->FontSpacing;
return sprintf('%.2F %.2F %.2F %.2F re f',$x*$this->k,($this->h-($y-$up/1000*$this->FontSize))*$this->k,$w*$this->k,-$ut/1000*$this->FontSizePt);
}
}
样品使用测试:
$pdf = new Custom_FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial', 'BU', 11);
$pdf->SetFontSpacing(3);
$pdf->Cell(0, 10, 'Test of letter spacing with underline', 0, 1);
$pdf->SetFontSpacing(0);
$pdf->Cell(0, 10, 'Test of letter spacing with underline');
$pdf->Output();
测试扩展 FPDF 版本 1.81
这真的可以让你做字母间距:
// letter-spacing (0 for normal, 0.3 = 33%, 1 = 100%)
function SetCharSpacing($cs) {
$this->_out(sprintf('BT %.3F Tc ET',$cs*$this->k));
}
学分: http: //fpdf.de/forum/showthread.php?t =3241
不幸的是,您不能仅使用 FPDF 函数直接执行此操作。你需要在这里编写一个新函数Cell()
,用一些新参数重新创建......
但是等等……有人已经这样做了!
这是一项很棒的工作,你甚至不需要别的东西!:)
把它放在你的 fpdf php 类中。
function SetFontSpacing( $size ) {
if ( $this->FontSpacingPt == $size ) return;
$this->FontSpacingPt = $size;
$this->FontSpacing = $size / $this->k;
if ( $this->page > 0 )
$this->_out( sprintf( 'BT %.3f Tc ET', $size ) );
}
在此之前在 fpdf 类中添加全局变量;var $FontSpacingPt;
希望它对最新的 fpdf 课程有所帮助。
如果您使用这些答案并且遇到右对齐文本问题,我可以使用下面的代码修复它。我认为它也适用于居中的文本。该GetStringWidth
函数没有考虑新的字符间距,因此它返回了错误的字符串宽度。
修复它的部分是:$wtf = $this->cs/4+1;
和$w += $charw*$wtf;
。我不知道为什么会这样,但是经过大约一个小时的反复试验和修补不同的数字和方程式,这些数字似乎适用于任何字符间距值。它可能仅适用于我的字体(Roboto Condensed),因此您可能需要添加或减去4
一点才能使其与您的字体一起使用。我不知道。
如果有人比我聪明并且可以添加真正的解决方案,我将非常感激。或者,如果它非常适合您,我很想听听。
protected $cs; // character spacing
// Sets character spacing (0 for normal, 0.5 = 50%, 1 = 100%)
function SetFontSpacing($cs=0)
{
$this->cs = $cs;
$this->_out(sprintf('BT %.3F Tc ET', $cs*$this->k));
}
function GetStringWidth($s)
{
// Get width of a string in the current font
$s = (string)$s;
$cw = &$this->CurrentFont['cw'];
$w = 0;
$l = strlen($s);
for($i=0;$i<$l;$i++) {
$charw = $cw[$s[$i]];
$wtf = $this->cs/4+1;
$w += $charw*$wtf;
}
return $w*$this->FontSize/1000;
}