10-14.php

来自「《php程序设计》的配套源码 《php程序设计》的配套源码 《php程序」· PHP 代码 · 共 19 行

PHP
19
字号
<?php
  $p = pdf_new();
  pdf_open_file($p);

  pdf_begin_page($p,612,792);
  pdf_add_note($p,100,650,200,750,
	       "This is a test annotation.","Testing","note",1);
  pdf_end_page($p);

  pdf_close($p);
  $buf = pdf_get_buffer($p);
  $len = strlen($buf);
  header("Content-type: application/pdf");
  header("Content-Length: $len");
  header("Content-Disposition: inline; filename=note.pdf");
  echo $buf;
  pdf_delete($p);
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?