BlaBla.cn

PHP: cpdf_add_outline - Manual

BlaBla.cn
cpdf_arc > <cpdf_add_annotation
Last updated: Wed, 19 Mar 2008

cpdf_add_outline

(PHP 4, PHP 5 <= 5.0.5)

cpdf_add_outline — Adds bookmark for current page

说明

int cpdf_add_outline ( int $pdf_document , int $lastoutline , int $sublevel , int $open , int $pagenr , string $text )

Adds a bookmark with text text that points to the current page.

参数

pdf_document

The document handle, returned by cpdf_open().

lastoutline

sublevel

open

pagenr

text

The bookmark text

范例

Example#1 Adding a page outline

<?php
$cpdf 
cpdf_open ( 0 );
cpdf_page_init ( $cpdf 1 0 595 842 );
cpdf_add_outline ( $cpdf 0 0 0 1 "Page 1" );
// ...
// some drawing
// ...
cpdf_finalize ( $cpdf );
header ( "Content-type: application/pdf" );
cpdf_output_buffer ( $cpdf );
cpdf_close ( $cpdf );
?>




cpdf_arc > <cpdf_add_annotation
Last updated: Wed, 19 Mar 2008
 
 
BlaBla.cn

© 2005-2008 BlaBla.cn 版权所有