?? 10-14.php
字號:
<?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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -