1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
|
<HTML
><HEAD
><TITLE
>PDF functions</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.57"><LINK
REL="HOME"
TITLE="PHP Manual"
HREF="manual.html"><LINK
REL="UP"
TITLE="Function Reference"
HREF="funcref.html"><LINK
REL="PREVIOUS"
TITLE="ob_implicit_flush"
HREF="function.ob-implicit-flush.html"><LINK
REL="NEXT"
TITLE="pdf_set_info"
HREF="function.pdf-set-info.html"><META
NAME="HTTP_EQUIV"
CONTENT="text/html; charset=ISO-8859-1"></HEAD
><BODY
CLASS="reference"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP Manual</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.ob-implicit-flush.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.pdf-set-info.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="reference"
><A
NAME="ref.pdf"
></A
><DIV
CLASS="TITLEPAGE"
><H1
CLASS="title"
>XLVII. PDF functions</H1
><DIV
CLASS="PARTINTRO"
><A
NAME="AEN27991"
></A
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="AEN27992"
>Introduction</A
></H1
><P
> You can use the PDF functions in PHP to create PDF files if you
have the PDF library by Thomas Merz (available at
<A
HREF="http://www.pdflib.com/pdflib/index.html"
TARGET="_top"
>http://www.pdflib.com/pdflib/index.html</A
>;
you will also need <A
HREF="ftp://ftp.uu.net/graphics/jpeg/"
TARGET="_top"
>the JPEG library</A
>
and <A
HREF="http://www.libtiff.org/"
TARGET="_top"
>the TIFF library</A
> to
compile this. These two libs also quite often make problems when
configuring php. Follow the messages of configure to fix possible
problems.
</P
><P
> Please consult the excellent documentation for
pdflib shipped with the source distribution of pdflib.
It provides a very good overview of what pdflib capable of doing.
Most of the functions in pdflib
and the PHP module have the same name. The parameters are also
identical. You should also understand some of the concepts of PDF
or Postscript to efficiently use this module.
All lengths and coordinates are measured in Postscript points.
There are generally 72 PostScript points to an inch, but this
depends on the output resolution.
</P
><P
> There is another PHP module for pdf document creation based on
<A
HREF="http://www.fastio.com/"
TARGET="_top"
>FastIO's</A
>.
ClibPDF. It has a slightly different API. Check the
<A
HREF="ref.cpdf.html"
>ClibPDF functions</A
> section for
details.
</P
><P
>
The pdf module introduces two new type of variable.
It is called <TT
CLASS="parameter"
><I
>pdfdoc</I
></TT
>
<TT
CLASS="parameter"
><I
>pdfdoc</I
></TT
> is a pointer to a pdf document and
almost all functions need it as its first parameter.
</P
></DIV
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="AEN28005"
>Confusion with old pdflib versions</A
></H1
><P
>
Since the very begining of PDF support in PHP — starting with
pdflib 0.6 —
there has been tons of changes especially to the pdflib API. Most of
these changes has been somehow covered by PHP, some has even required
changes to the PHP API. Since pdflib
3.x the API seems to be stabilzed and PHP 4 has adopted the version as a
minimum requirement for PDF support. The consequence will be that many
functions will disappear or be replaced by alternatives sooner or later.
Support for pdflib 0.6 is already completely given up.
The following table list all the functions which are deprecated
in PHP 4.02 and should be replaced by their new versions.
</P
><P
> <DIV
CLASS="table"
><A
NAME="AEN28009"
></A
><P
><B
>Table 1. Deprecated functions and its replacements</B
></P
><TABLE
BORDER="1"
CLASS="CALSTABLE"
><THEAD
><TR
><TH
ALIGN="LEFT"
VALIGN="MIDDLE"
>Old function</TH
><TH
ALIGN="LEFT"
VALIGN="MIDDLE"
>Replacement</TH
></TR
></THEAD
><TBODY
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-put-image.html"
><B
CLASS="function"
>pdf_put_image()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Not needed anymore.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_get_font()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-get-value.html"
><B
CLASS="function"
>pdf_get_value()</B
></A
> passing
<TT
CLASS="literal"
>"font"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_get_fontsize()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-get-value.html"
><B
CLASS="function"
>pdf_get_value()</B
></A
> passing
<TT
CLASS="literal"
>"fontsize"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_get_fontname()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-get-parameter.html"
><B
CLASS="function"
>pdf_get_parameter()</B
></A
> passing
<TT
CLASS="literal"
>"fontname"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_set_info_creator()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-info.html"
><B
CLASS="function"
>pdf_set_info()</B
></A
> passing
<TT
CLASS="literal"
>"Creator"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_set_info_title()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-info.html"
><B
CLASS="function"
>pdf_set_info()</B
></A
> passing
<TT
CLASS="literal"
>"Title"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_set_info_subject()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-info.html"
><B
CLASS="function"
>pdf_set_info()</B
></A
> passing
<TT
CLASS="literal"
>"Subject"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_set_info_author()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-info.html"
><B
CLASS="function"
>pdf_set_info()</B
></A
> passing
<TT
CLASS="literal"
>"Author"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_set_info_keywords()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-info.html"
><B
CLASS="function"
>pdf_set_info()</B
></A
> passing
<TT
CLASS="literal"
>"Keywords"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-leading.html"
><B
CLASS="function"
>pdf_set_leading()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-value.html"
><B
CLASS="function"
>pdf_set_value()</B
></A
> passing
<TT
CLASS="literal"
>"leading"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-text-rendering.html"
><B
CLASS="function"
>pdf_set_text_rendering()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-value.html"
><B
CLASS="function"
>pdf_set_value()</B
></A
> passing
<TT
CLASS="literal"
>"textrendering"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-text-rise.html"
><B
CLASS="function"
>pdf_set_text_rise()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-value.html"
><B
CLASS="function"
>pdf_set_value()</B
></A
> passing
<TT
CLASS="literal"
>"textrise"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-horiz-scaling.html"
><B
CLASS="function"
>pdf_set_horiz_scaling()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-value.html"
><B
CLASS="function"
>pdf_set_value()</B
></A
> passing
<TT
CLASS="literal"
>"horizscaling"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-text-matrix.html"
><B
CLASS="function"
>pdf_set_text_matrix()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
>Not available anymore</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-char-spacing.html"
><B
CLASS="function"
>pdf_set_char_spacing()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-value.html"
><B
CLASS="function"
>pdf_set_value()</B
></A
> passing
<TT
CLASS="literal"
>"charspacing"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-word-spacing.html"
><B
CLASS="function"
>pdf_set_word_spacing()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-value.html"
><B
CLASS="function"
>pdf_set_value()</B
></A
> passing
<TT
CLASS="literal"
>"wordspacing"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-transition.html"
><B
CLASS="function"
>pdf_set_transition()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-parameter.html"
><B
CLASS="function"
>pdf_set_parameter()</B
></A
> passing
<TT
CLASS="literal"
>"transition"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-duration.html"
><B
CLASS="function"
>pdf_set_duration()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-set-value.html"
><B
CLASS="function"
>pdf_set_value()</B
></A
> passing
<TT
CLASS="literal"
>"duration"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-open-gif.html"
><B
CLASS="function"
>pdf_open_gif()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-open-image-file.html"
><B
CLASS="function"
>pdf_open_image_file()</B
></A
> passing
<TT
CLASS="literal"
>"gif"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-open-jpeg.html"
><B
CLASS="function"
>pdf_open_jpeg()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-open-image-file.html"
><B
CLASS="function"
>pdf_open_image_file()</B
></A
> passing
<TT
CLASS="literal"
>"jpeg"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-open-tiff.html"
><B
CLASS="function"
>pdf_open_tiff()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-open-image-file.html"
><B
CLASS="function"
>pdf_open_image_file()</B
></A
> passing
<TT
CLASS="literal"
>"tiff"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-open-png.html"
><B
CLASS="function"
>pdf_open_png()</B
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-open-image-file.html"
><B
CLASS="function"
>pdf_open_image_file()</B
></A
> passing
<TT
CLASS="literal"
>"png"</TT
> as the second parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_get_imagewidth()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-get-value.html"
><B
CLASS="function"
>pdf_get_value()</B
></A
> passing
<TT
CLASS="literal"
>"imagewidth"</TT
> as the second parameter and the image
as the third parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>pdf_get_imageheight()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><A
HREF="function.pdf-get-value.html"
><B
CLASS="function"
>pdf_get_value()</B
></A
> passing
<TT
CLASS="literal"
>"imageheight"</TT
> as the second parameter and the
image as the third parameter.</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>()</B
></TD
><TD
ALIGN="LEFT"
VALIGN="MIDDLE"
><B
CLASS="function"
>()</B
></TD
></TR
></TBODY
></TABLE
></DIV
>
</P
></DIV
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="AEN28162"
>Hints for installation of pdflib 3.x</A
></H1
><P
> Since version 3.0 of pdflib you should configure pdflib with the option
<TT
CLASS="literal"
>--enable-shared-pdflib</TT
>.
</P
></DIV
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="AEN28166"
>Issues with older versions of pdflib</A
></H1
><P
> If you use pdflib 2.01 check how the lib was installed.
There should be a file or a to link libpdf.so. Version 2.01 just creates
a lib with the name libpdf2.01.so which cannot be found when linking
the test programm in configure. You will have to create a symbolic
link from libpdf.so to libpdf2.01.so.).
</P
><P
> Version 2.20 of pdflib has introduced more changes to its API and
support for chinese and japanese fonts. This unfortunately causes
some changes of the pdf module of php4 (not php3). If you use pdflib 2.20
handle the in memory generation of PDF documents with care. Until
pdflib 3.0 is released it might be unstable. The encoding parameter
of <A
HREF="function.pdf-set-font.html"
><B
CLASS="function"
>pdf_set_font()</B
></A
> has changed to a string. This
means that instead of e.g. 4 you have to use 'winansi'.
</P
><P
> If you use pdflib 2.30 the <A
HREF="function.pdf-set-text-matrix.html"
><B
CLASS="function"
>pdf_set_text_matrix()</B
></A
>
will have gone. It is not supported any more. In general it is a good
advise to consult the release notes of the used version of pdflib
for possible changes.
</P
><P
> Any version of PHP 4 after March, 9th 2000 do not support versions
of pdflib older than 3.0. PHP 3 on the other hand should not be used
with version newer than 2.01.
</P
></DIV
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="AEN28174"
>Examples</A
></H1
><P
> Most of the functions are fairly easy to use. The most difficult part
is probably to create a very simple pdf document at all. The following
example should help to get started.
It creates the file <TT
CLASS="filename"
>test.pdf</TT
>
with one page. The page contains the text "Times-Roman" in an
outlined 30pt font. The text is also underlined.
</P
><P
> <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN28179"
></A
><P
><B
>Example 1. Creating a PDF document with pdflib</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
> <?php
$fp = fopen("test.pdf", "w");
$pdf = pdf_open($fp);
pdf_set_info($pdf, "Author", "Uwe Steinmann");
pdf_set_info($pdf, "Title", "Test for PHP wrapper of PDFlib 2.0");
pdf_set_info($pdf, "Creator", "See Author");
pdf_set_info($pdf, "Subject", "Testing");
pdf_begin_page($pdf, 595, 842);
pdf_add_outline($pdf, "Page 1");
pdf_set_font($pdf, "Times-Roman", 30, "host");
pdf_set_value($pdf, "textrendering", 1);
pdf_show_xy($pdf, "Times Roman outlined", 50, 750);
pdf_moveto($pdf, 50, 740);
pdf_lineto($pdf, 330, 740);
pdf_stroke($pdf);
pdf_end_page($pdf);
pdf_close($pdf);
fclose($fp);
echo "<A HREF=getpdf.php>finished</A>";
?>
</PRE
></TD
></TR
></TABLE
><P
> The script <TT
CLASS="filename"
>getpdf.php</TT
> just returns the pdf document.
</P
><DIV
CLASS="informalexample"
><A
NAME="AEN28184"
></A
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
> <?php
$fp = fopen("test.pdf", "r");
header("Content-type: application/pdf");
fpassthru($fp);
fclose($fp);
?>
</PRE
></TD
></TR
></TABLE
><P
></P
></DIV
></DIV
></TD
></TR
></TABLE
>
</P
><P
> The pdflib distribution contains a more complex example which
creates a serious of pages with an analog clock. This example
converted into PHP using pdflib looks as the following (you
can see the same example in the documentation for the
<A
HREF="ref.cpdf.html"
>clibpdf module)</A
>:
</P
><P
> <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN28189"
></A
><P
><B
>Example 2. pdfclock example from pdflib distribution</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
> <?php
$pdffilename = "clock.pdf";
$radius = 200;
$margin = 20;
$pagecount = 40;
$fp = fopen($pdffilename, "w");
$pdf = pdf_open($fp);
pdf_set_info($pdf, "Creator", "pdf_clock.php3");
pdf_set_info($pdf, "Author", "Uwe Steinmann");
pdf_set_info($pdf, "Title", "Analog Clock");
while($pagecount-- > 0) {
pdf_begin_page($pdf, 2 * ($radius + $margin), 2 * ($radius + $margin));
pdf_set_parameter($pdf, "transition", "wipe");
pdf_set_value($pdf, "duration", 0.5);
pdf_translate($pdf, $radius + $margin, $radius + $margin);
pdf_save($pdf);
pdf_setrgbcolor($pdf, 0.0, 0.0, 1.0);
/* minute strokes */
pdf_setlinewidth($pdf, 2.0);
for ($alpha = 0; $alpha < 360; $alpha += 6) {
pdf_rotate($pdf, 6.0);
pdf_moveto($pdf, $radius, 0.0);
pdf_lineto($pdf, $radius-$margin/3, 0.0);
pdf_stroke($pdf);
}
pdf_restore($pdf);
pdf_save($pdf);
/* 5 minute strokes */
pdf_setlinewidth($pdf, 3.0);
for ($alpha = 0; $alpha < 360; $alpha += 30) {
pdf_rotate($pdf, 30.0);
pdf_moveto($pdf, $radius, 0.0);
pdf_lineto($pdf, $radius-$margin, 0.0);
pdf_stroke($pdf);
}
$ltime = getdate();
/* draw hour hand */
pdf_save($pdf);
pdf_rotate($pdf,-(($ltime['minutes']/60.0)+$ltime['hours']-3.0)*30.0);
pdf_moveto($pdf, -$radius/10, -$radius/20);
pdf_lineto($pdf, $radius/2, 0.0);
pdf_lineto($pdf, -$radius/10, $radius/20);
pdf_closepath($pdf);
pdf_fill($pdf);
pdf_restore($pdf);
/* draw minute hand */
pdf_save($pdf);
pdf_rotate($pdf,-(($ltime['seconds']/60.0)+$ltime['minutes']-15.0)*6.0);
pdf_moveto($pdf, -$radius/10, -$radius/20);
pdf_lineto($pdf, $radius * 0.8, 0.0);
pdf_lineto($pdf, -$radius/10, $radius/20);
pdf_closepath($pdf);
pdf_fill($pdf);
pdf_restore($pdf);
/* draw second hand */
pdf_setrgbcolor($pdf, 1.0, 0.0, 0.0);
pdf_setlinewidth($pdf, 2);
pdf_save($pdf);
pdf_rotate($pdf, -(($ltime['seconds'] - 15.0) * 6.0));
pdf_moveto($pdf, -$radius/5, 0.0);
pdf_lineto($pdf, $radius, 0.0);
pdf_stroke($pdf);
pdf_restore($pdf);
/* draw little circle at center */
pdf_circle($pdf, 0, 0, $radius/30);
pdf_fill($pdf);
pdf_restore($pdf);
pdf_end_page($pdf);
}
$pdf = pdf_close($pdf);
fclose($fp);
echo "<A HREF=getpdf.php?filename=".$pdffilename.">finished</A>";
?>
</PRE
></TD
></TR
></TABLE
><P
> The PHP script <TT
CLASS="filename"
>getpdf.php</TT
> just outputs the pdf document.
</P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
> <?php
$fp = fopen($filename, "r");
header("Content-type: application/pdf");
fpassthru($fp);
fclose($fp);
?>
</PRE
></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
></P
></DIV
></DIV
><DIV
CLASS="TOC"
><DL
><DT
><B
>Table of Contents</B
></DT
><DT
><A
HREF="function.pdf-set-info.html"
>pdf_set_info</A
> — Fills a field of the document information</DT
><DT
><A
HREF="function.pdf-open.html"
>pdf_open</A
> — Opens a new pdf document</DT
><DT
><A
HREF="function.pdf-close.html"
>pdf_close</A
> — Closes a pdf document</DT
><DT
><A
HREF="function.pdf-begin-page.html"
>pdf_begin_page</A
> — Starts new page</DT
><DT
><A
HREF="function.pdf-end-page.html"
>pdf_end_page</A
> — Ends a page</DT
><DT
><A
HREF="function.pdf-show.html"
>pdf_show</A
> — Output text at current position</DT
><DT
><A
HREF="function.pdf-show-boxed.html"
>pdf_show_boxed</A
> — Output text in a box</DT
><DT
><A
HREF="function.pdf-show-xy.html"
>pdf_show_xy</A
> — Output text at given position</DT
><DT
><A
HREF="function.pdf-set-font.html"
>pdf_set_font</A
> — Selects a font face and size</DT
><DT
><A
HREF="function.pdf-set-leading.html"
>pdf_set_leading</A
> — Sets distance between text lines</DT
><DT
><A
HREF="function.pdf-set-parameter.html"
>pdf_set_parameter</A
> — Sets certain parameters</DT
><DT
><A
HREF="function.pdf-get-parameter.html"
>pdf_get_parameter</A
> — Gets certain parameters</DT
><DT
><A
HREF="function.pdf-set-value.html"
>pdf_set_value</A
> — Sets certain numerical value</DT
><DT
><A
HREF="function.pdf-get-value.html"
>pdf_get_value</A
> — Gets certain numerical value</DT
><DT
><A
HREF="function.pdf-get-image-height.html"
>pdf_get_image_height</A
> — Returns height of an image</DT
><DT
><A
HREF="function.pdf-get-image-width.html"
>pdf_get_image_width</A
> — Returns width of an image</DT
><DT
><A
HREF="function.pdf-set-text-rendering.html"
>pdf_set_text_rendering</A
> — Determines how text is rendered</DT
><DT
><A
HREF="function.pdf-set-horiz-scaling.html"
>pdf_set_horiz_scaling</A
> — Sets horizontal scaling of text</DT
><DT
><A
HREF="function.pdf-set-text-rise.html"
>pdf_set_text_rise</A
> — Sets the text rise</DT
><DT
><A
HREF="function.pdf-set-text-matrix.html"
>pdf_set_text_matrix</A
> — Sets the text matrix</DT
><DT
><A
HREF="function.pdf-set-text-pos.html"
>pdf_set_text_pos</A
> — Sets text position</DT
><DT
><A
HREF="function.pdf-set-char-spacing.html"
>pdf_set_char_spacing</A
> — Sets character spacing</DT
><DT
><A
HREF="function.pdf-set-word-spacing.html"
>pdf_set_word_spacing</A
> — Sets spacing between words</DT
><DT
><A
HREF="function.pdf-skew.html"
>pdf_skew</A
> — Skews the coordinate system</DT
><DT
><A
HREF="function.pdf-continue-text.html"
>pdf_continue_text</A
> — Outputs text in next line</DT
><DT
><A
HREF="function.pdf-stringwidth.html"
>pdf_stringwidth</A
> — Returns width of text using current font</DT
><DT
><A
HREF="function.pdf-save.html"
>pdf_save</A
> — Saves the current environment</DT
><DT
><A
HREF="function.pdf-restore.html"
>pdf_restore</A
> — Restores formerly saved environment</DT
><DT
><A
HREF="function.pdf-translate.html"
>pdf_translate</A
> — Sets origin of coordinate system</DT
><DT
><A
HREF="function.pdf-scale.html"
>pdf_scale</A
> — Sets scaling</DT
><DT
><A
HREF="function.pdf-rotate.html"
>pdf_rotate</A
> — Sets rotation</DT
><DT
><A
HREF="function.pdf-setflat.html"
>pdf_setflat</A
> — Sets flatness</DT
><DT
><A
HREF="function.pdf-setlinejoin.html"
>pdf_setlinejoin</A
> — Sets linejoin parameter</DT
><DT
><A
HREF="function.pdf-setlinecap.html"
>pdf_setlinecap</A
> — Sets linecap parameter</DT
><DT
><A
HREF="function.pdf-setmiterlimit.html"
>pdf_setmiterlimit</A
> — Sets miter limit</DT
><DT
><A
HREF="function.pdf-setlinewidth.html"
>pdf_setlinewidth</A
> — Sets line width</DT
><DT
><A
HREF="function.pdf-setdash.html"
>pdf_setdash</A
> — Sets dash pattern</DT
><DT
><A
HREF="function.pdf-moveto.html"
>pdf_moveto</A
> — Sets current point</DT
><DT
><A
HREF="function.pdf-curveto.html"
>pdf_curveto</A
> — Draws a curve</DT
><DT
><A
HREF="function.pdf-lineto.html"
>pdf_lineto</A
> — Draws a line</DT
><DT
><A
HREF="function.pdf-circle.html"
>pdf_circle</A
> — Draws a circle</DT
><DT
><A
HREF="function.pdf-arc.html"
>pdf_arc</A
> — Draws an arc</DT
><DT
><A
HREF="function.pdf-rect.html"
>pdf_rect</A
> — Draws a rectangle</DT
><DT
><A
HREF="function.pdf-closepath.html"
>pdf_closepath</A
> — Closes path</DT
><DT
><A
HREF="function.pdf-stroke.html"
>pdf_stroke</A
> — Draws line along path</DT
><DT
><A
HREF="function.pdf-closepath-stroke.html"
>pdf_closepath_stroke</A
> — Closes path and draws line along path</DT
><DT
><A
HREF="function.pdf-fill.html"
>pdf_fill</A
> — Fills current path</DT
><DT
><A
HREF="function.pdf-fill-stroke.html"
>pdf_fill_stroke</A
> — Fills and strokes current path</DT
><DT
><A
HREF="function.pdf-closepath-fill-stroke.html"
>pdf_closepath_fill_stroke</A
> — Closes, fills and strokes current path</DT
><DT
><A
HREF="function.pdf-endpath.html"
>pdf_endpath</A
> — Ends current path</DT
><DT
><A
HREF="function.pdf-clip.html"
>pdf_clip</A
> — Clips to current path</DT
><DT
><A
HREF="function.pdf-setgray-fill.html"
>pdf_setgray_fill</A
> — Sets filling color to gray value</DT
><DT
><A
HREF="function.pdf-setgray-stroke.html"
>pdf_setgray_stroke</A
> — Sets drawing color to gray value</DT
><DT
><A
HREF="function.pdf-setgray.html"
>pdf_setgray</A
> — Sets drawing and filling color to gray value</DT
><DT
><A
HREF="function.pdf-setrgbcolor-fill.html"
>pdf_setrgbcolor_fill</A
> — Sets filling color to rgb color value</DT
><DT
><A
HREF="function.pdf-setrgbcolor-stroke.html"
>pdf_setrgbcolor_stroke</A
> — Sets drawing color to rgb color value</DT
><DT
><A
HREF="function.pdf-setrgbcolor.html"
>pdf_setrgbcolor</A
> — Sets drawing and filling color to rgb color value</DT
><DT
><A
HREF="function.pdf-add-outline.html"
>pdf_add_outline</A
> — Adds bookmark for current page</DT
><DT
><A
HREF="function.pdf-set-transition.html"
>pdf_set_transition</A
> — Sets transition between pages</DT
><DT
><A
HREF="function.pdf-set-duration.html"
>pdf_set_duration</A
> — Sets duration between pages</DT
><DT
><A
HREF="function.pdf-open-gif.html"
>pdf_open_gif</A
> — Opens a GIF image</DT
><DT
><A
HREF="function.pdf-open-png.html"
>pdf_open_png</A
> —
Opens a PNG image
</DT
><DT
><A
HREF="function.pdf-open-image-file.html"
>pdf_open_image_file</A
> — Reads an image from a file</DT
><DT
><A
HREF="function.pdf-open-memory-image.html"
>pdf_open_memory_image</A
> — Opens an image created with PHP's image functions</DT
><DT
><A
HREF="function.pdf-open-jpeg.html"
>pdf_open_jpeg</A
> — Opens a JPEG image</DT
><DT
><A
HREF="function.pdf-open-tiff.html"
>pdf_open_tiff</A
> — Opens a TIFF image</DT
><DT
><A
HREF="function.pdf-close-image.html"
>pdf_close_image</A
> — Closes an image</DT
><DT
><A
HREF="function.pdf-place-image.html"
>pdf_place_image</A
> — Places an image on the page</DT
><DT
><A
HREF="function.pdf-put-image.html"
>pdf_put_image</A
> — Stores an image in the PDF for later use</DT
><DT
><A
HREF="function.pdf-execute-image.html"
>pdf_execute_image</A
> — Places a stored image on the page</DT
><DT
><A
HREF="function.pdf-add-annotation.html"
>pdf_add_annotation</A
> — Adds annotation</DT
><DT
><A
HREF="function.pdf-set-border-style.html"
>pdf_set_border_style</A
> — Sets style of border around links and annotations</DT
><DT
><A
HREF="function.pdf-set-border-color.html"
>pdf_set_border_color</A
> — Sets color of border around links and annotations</DT
><DT
><A
HREF="function.pdf-set-border-dash.html"
>pdf_set_border_dash</A
> — Sets dash style of border around links and annotations</DT
></DL
></DIV
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.ob-implicit-flush.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="manual.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.pdf-set-info.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>ob_implicit_flush</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="funcref.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>pdf_set_info</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>
|