PDF 函数
在线手册:中文 英文
PHP手册

PDF_create_bookmark

(PECL pdflib >= 2.0.0)

PDF_create_bookmarkCreate bookmark

说明

int PDF_create_bookmark ( resource $pdfdoc , string $text , string $optlist )

Creates a bookmark subject to various options.


PDF 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Create bookmark

用户评论:

Anonymous (16-Sep-2011 01:23)

Bookmarks as URL

<?php
  $action
= $p->create_action("URI", "url=http://www.example.com");
 
$p->create_bookmark("www.example.com", "action {activate $action}");
?>

    OR

<?php
  $action
= pdf_create_action($p, "URI", "url=http://www.example.com");
 
pdf_create_bookmark($p, "www.example.com", "action {activate $action}");
?>

Bookmarks as GoTo

<?php
  $optlist
= "destination={page=1 type=fixed left=50 top=700 zoom=1}";
 
$action = $p->create_action("GoTo", $optlist);
 
$p->create_bookmark("page1", "action {activate $action}"); [snip]
?>

    OR

<?php
  $optlist
= "destination={page=1 type=fixed left=50 top=700 zoom=1}";
 
$action = pdf_create_action($p, "GoTo", $optlist);
 
pdf_create_bookmark($p, "page1", "action {activate $action}");
?>

mryan *at* carleton *daught* edu (27-Apr-2009 11:17)

This function expects either basic ASCII or UTF-16 with a BOM (byte order mark) at the beginning of the string. Any other multibyte encoding (like UTF-8) will be treated as garbage, or in some situations may produce a fatal error.

Here's the solution I came up with, for making a bookmark from a UTF-8 string. The pack() function creates the BOM.

<?php
$bookmark
= 'a UTF-8 string';
$bookmark = pack('H*','feff').mb_convert_encoding($bookmark, 'UTF-16', 'UTF-8');
PDF_create_bookmark($p, $bookmark, '');
?>