如何在 FPDF 中添加版权符号?

How to add copyright symbol in FPDF?

我想在生成的 PDF 中添加一个带有版权符号的单元格。但是添加单元格输出时会在开头显示一些不需要的符号。需要一个解决方案。

function Footer {
$this->SetTextColor(96,96,96);
$this->SetFont('Times','B',12);
$this->Cell(0,5,'abc Limited',0,2,'C',0);
$this->Cell(50,5,'',0,2,'C',0);
$this->Cell(0,5,'this is address',0,2,'C',0);
$this->Cell(188,5,'','B',1,'c',0);  
$this->Cell(50,5,'',0,2,'C',0); 
$this->Cell(0,5,  '©All rights reserved abc Ltd',0,1,'C',0);
}

您有 2 个选择:

  1. 在您的文本编辑器中将您的文档编码为 utf-8。

  2. 直接使用 Unicode Html 实体 ©.This 会将您的代码变成:

    <?php $this->Cell (0'5, '&#169 All rights reserved blahblah');?>

function Footer {   
    $this->Cell(0,5,iconv("UTF-8", "ISO-8859-1", "©").'All rights  reserved     
Ltd.',0,1,'C',0);
}

我尝试了“©”建议,但它显示的只是字面上的“©”,所以我尝试了一些其他选项。只需简单的 chr 就可以正常工作...

$this->Cell(0, 5, chr(169) . ' All rights reserved, etc', 0, 1, 'C', 0);