代码之家  ›  专栏  ›  技术社区  ›  Bits Please

如何添加页码

  •  1
  • Bits Please  · 技术社区  · 6 年前

    我想在页脚添加页码,我已经试过下面的代码了,但没用。谁能告诉我我哪里出错了吗?

    $dompdf = new Dompdf();
    $dompdf->set_option("isPhpEnabled", true);
    $html_content = "
    <html>
    <head>
    <style>
    @font-face {
      font-family: kindergarten;
      font-weight: normal;
      font-style: normal;
      src: url('fonts/kindergarten.ttf') format('truetype');
    }
    .test{  font-family: kindergarten;  }
    </style>
    
    </head>
    <body>
    <script type='text/php'>
    if ( isset($pdf) ) { 
        $pdf->page_script('
    
                $font = $fontMetrics->get_font('Arial, Helvetica, sans-serif, 'normal');
                $size = 12;
                $pageText = 'Page 1';
                $y = 15;
                $x = 520;
                $pdf->text($x, $y, $pageText, $font, $size);
    
        ');
    }
    </script>
    <div>My Content goes here</div>
    </body>
    </html>
    "; 
    //echo $html_content; die;
    $dompdf->loadHtml($html_content);
    $dompdf->render();
    
    1 回复  |  直到 6 年前
        1
  •  4
  •   Eric Aya    6 年前

    使用公共方法 page_text()

    // Documentation
    
     * @param float  $x
     * @param float  $y
     * @param string $text       the text to write
     * @param string $font       the font file to use
     * @param float  $size       the font size, in points
     * @param array  $color
     * @param float  $word_space word spacing adjustment
     * @param float  $char_space char spacing adjustment
     * @param float  $angle      angle to write the text at, measured CW starting from the x-axis
    

    我的例子( https://prnt.sc/mifmxl ):

    $html   = 'Text to test...';
    $dompdf = new Dompdf();
    
    $dompdf->loadHtml($html);
    $dompdf->setPaper('A4', 'portrait');
    $dompdf->render();
    
    // Parameters
    $x          = 505;
    $y          = 790;
    $text       = "{PAGE_NUM} of {PAGE_COUNT}";     
    $font       = $dompdf->getFontMetrics()->get_font('Helvetica', 'normal');   
    $size       = 10;    
    $color      = array(0,0,0);
    $word_space = 0.0;
    $char_space = 0.0;
    $angle      = 0.0;
    
    $dompdf->getCanvas()->page_text(
      $x, $y, $text, $font, $size, $color, $word_space, $char_space, $angle
    );
    
    // stream
    $dompdf->stream('pdf_out.pdf', array('Attachment' => false));
    

    版本:DomPDF( v0.8.3版