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 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223
|
#=======================================================================
# ____ ____ _____ _ ____ ___ ____
# | _ \| _ \| ___| _ _ / \ | _ \_ _| |___ \
# | |_) | | | | |_ (_) (_) / _ \ | |_) | | __) |
# | __/| |_| | _| _ _ / ___ \| __/| | / __/
# |_| |____/|_| (_) (_) /_/ \_\_| |___| |_____|
#
# A Perl Module Chain to faciliate the Creation and Modification
# of High-Quality "Portable Document Format (PDF)" Files.
#
# Copyright 1999-2005 Alfred Reibenschuh <areibens@cpan.org>.
#
#=======================================================================
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
# $Id: Content.pm,v 1.34 2005/03/15 02:20:46 fredo Exp $
#
#=======================================================================
package PDF::API2::Content;
BEGIN {
use strict;
use vars qw(@ISA $VERSION);
use PDF::API2::Basic::PDF::Dict;
use PDF::API2::Basic::PDF::Utils;
use PDF::API2::Util;
use PDF::API2::Matrix;
use Math::Trig;
use Encode;
use Compress::Zlib;
@ISA = qw(PDF::API2::Basic::PDF::Dict);
( $VERSION ) = '$Revision: 1.34 $' =~ /Revision: (\S+)\s/; # $Date: 2005/03/15 02:20:46 $
}
no warnings qw[ deprecated recursion uninitialized ];
=head1 NAME
PDF::API2::Content - Content object for PDF::API2
=head1 SYNOPSIS
$co = PDF::API2::Content->new @parameters
Returns a new content object (called from $page->text/gfx).
=cut
sub new {
my ($class)=@_;
my $self = $class->SUPER::new(@_);
$self->{' stream'}='';
$self->{' poststream'}='';
$self->{' font'}=undef;
$self->{' fontset'}=0;
$self->{' fontsize'}=0;
$self->{' charspace'}=0;
$self->{' hspace'}=100;
$self->{' wordspace'}=0;
$self->{' lead'}=0;
$self->{' rise'}=0;
$self->{' render'}=0;
$self->{' matrix'}=[1,0,0,1,0,0];
$self->{' textmatrix'}=[1,0,0,1,0,0];
$self->{' textlinematrix'}=[0,0];
$self->{' fillcolor'}=[0];
$self->{' strokecolor'}=[0];
$self->{' translate'}=[0,0];
$self->{' scale'}=[1,1];
$self->{' skew'}=[0,0];
$self->{' rotate'}=0;
$self->{' apiistext'}=0;
# $self->save;
return($self);
}
sub outobjdeep {
my $self = shift @_;
$self->textend;
foreach my $k (qw[ api apipdf apiistext apipage font fontset fontsize
charspace hspace wordspace lead rise render matrix textmatrix textlinematrix
fillcolor strokecolor translate scale skew rotate ])
{
$self->{" $k"}=undef;
delete($self->{" $k"});
}
if($self->{-docompress}==1 && $self->{Filter})
{
$self->{' stream'}=Compress::Zlib::compress($self->{' stream'});
$self->{' nofilt'}=1;
delete $self->{-docompress};
}
$self->SUPER::outobjdeep(@_);
}
=item $co->add @content
Adds @content to the object.
=cut
sub add_post
{
my $self=shift @_;
if(scalar @_>0)
{
$self->{' poststream'}.=($self->{' poststream'}=~m|\s$|o?'':' ').join(' ',@_).' ';
}
$self;
}
sub add
{
my $self=shift @_;
if(scalar @_>0)
{
$self->{' stream'}.=encode("iso-8859-1",($self->{' stream'}=~m|\s$|o?'':' ').join(' ',@_).' ');
}
$self;
}
=item $co->save
Saves the state of the object.
=cut
sub _save
{
return('q');
}
sub save
{
my $self=shift @_;
unless(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1)
{
$self->add(_save());
}
}
=item $co->restore
Restores the state of the object.
=cut
sub _restore
{
return('Q');
}
sub restore
{
my $self=shift @_;
unless(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1) {
$self->add(_restore());
}
}
=item $co->compress
Marks content for compression on output.
=cut
sub compress
{
my $self=shift @_;
$self->{'Filter'}=PDFArray(PDFName('FlateDecode'));
$self->{-docompress}=1;
return($self);
}
sub metaStart
{
my $self=shift @_;
my $tag=shift @_;
my $obj=shift @_;
$self->add("/$tag");
if(defined $obj)
{
my $dict=PDFDict();
$dict->{Metadata}=$obj;
$self->resource('Properties',$obj->name,$dict);
$self->add('/'.($obj->name));
$self->add('BDC');
}
else
{
$self->add('BMC');
}
return($self);
}
sub metaEnd
{
my $self=shift @_;
$self->add('EMC');
return($self);
}
=item $co->flatness $flat
Sets flatness.
=cut
sub _flatness
{
my ($flatness)=@_;
return($flatness,'i');
}
sub flatness
{
my ($self,$flatness)=@_;
$self->add(_flatness($flatness));
}
=item $co->linecap $cap
Sets linecap.
=cut
sub _linecap
{
my ($linecap)=@_;
return($linecap,'J');
}
sub linecap
{
my ($self,$linecap)=@_;
$self->add(_linecap($linecap));
}
=item $co->linedash @dash
Sets linedash.
=cut
sub _linedash
{
my (@a)=@_;
if(scalar @a < 1)
{
return('[',']','0','d');
}
else
{
if($a[0]=~/^\-/)
{
my %a=@a;
$a{-pattern}=[$a{-full}||0,$a{-clear}||0] unless(ref $a{-pattern});
return('[',floats(@{$a{-pattern}}),']',($a{-shift}||0),'d');
}
else
{
return('[',floats(@a),'] 0 d');
}
}
}
sub linedash
{
my ($self,@a)=@_;
$self->add(_linedash(@a));
}
=item $co->linejoin $join
Sets linejoin.
=cut
sub _linejoin
{
my ($linejoin)=@_;
return($linejoin,'j');
}
sub linejoin
{
my ($this,$linejoin)=@_;
$this->add(_linejoin($linejoin));
}
=item $co->linewidth $width
Sets linewidth.
=cut
sub _linewidth
{
my ($linewidth)=@_;
return($linewidth,'w');
}
sub linewidth
{
my ($this,$linewidth)=@_;
$this->add(_linewidth($linewidth));
}
=item $co->meterlimit $limit
Sets meterlimit.
=cut
sub _meterlimit
{
my ($limit)=@_;
return($limit,'M');
}
sub meterlimit
{
my ($this, $limit)=@_;
$this->add(_meterlimit($limit));
}
=item $co->matrix $a,$b,$c,$d,$e,$f
Sets matrix transformation.
=cut
sub _matrix_text
{
my ($a,$b,$c,$d,$e,$f)=@_;
return(floats($a,$b,$c,$d,$e,$f),'Tm');
}
sub _matrix_gfx
{
my ($a,$b,$c,$d,$e,$f)=@_;
return(floats($a,$b,$c,$d,$e,$f),'cm');
}
sub matrix
{
my $self=shift @_;
my ($a,$b,$c,$d,$e,$f)=@_;
if(defined $a)
{
if(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1)
{
$self->add(_matrix_text($a,$b,$c,$d,$e,$f));
@{$self->{' textmatrix'}}=($a,$b,$c,$d,$e,$f);
@{$self->{' textlinematrix'}}=(0,0);
}
else
{
$self->add(_matrix_gfx($a,$b,$c,$d,$e,$f));
}
}
if(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1)
{
return(@{$self->{' textmatrix'}});
}
else
{
return($self);
}
}
=item $co->translate $x,$y
Sets translation transformation.
=cut
sub _translate
{
my ($x,$y)=@_;
return(1,0,0,1,$x,$y);
}
sub translate
{
my ($self,$x,$y)=@_;
$self->transform(-translate=>[$x,$y]);
}
=item $co->scale $sx,$sy
Sets scaleing transformation.
=cut
sub _scale
{
my ($x,$y)=@_;
return($x,0,0,$y,0,0);
}
sub scale
{
my ($self,$sx,$sy)=@_;
$self->transform(-scale=>[$sx,$sy]);
}
=item $co->skew $sa,$sb
Sets skew transformation.
=cut
sub _skew
{
my ($a,$b)=@_;
return(1, tan(deg2rad($a)),tan(deg2rad($b)),1,0,0);
}
sub skew
{
my ($self,$a,$b)=@_;
$self->transform(-skew=>[$a,$b]);
}
=item $co->rotate $rot
Sets rotation transformation.
=cut
sub _rotate
{
my ($a)=@_;
return(cos(deg2rad($a)), sin(deg2rad($a)),-sin(deg2rad($a)), cos(deg2rad($a)),0,0);
}
sub rotate
{
my ($self,$a)=@_;
$self->transform(-rotate=>$a);
}
=item $co->transform %opts
Sets transformations (eg. translate, rotate, scale, skew) in pdf-canonical order.
B<Example:>
$co->transform(
-translate => [$x,$y],
-rotate => $rot,
-scale => [$sx,$sy],
-skew => [$sa,$sb],
)
=cut
sub _transform
{
my (%opt)=@_;
my $mtx=PDF::API2::Matrix->new([1,0,0],[0,1,0],[0,0,1]);
foreach my $o (qw( -matrix -skew -scale -rotate -translate )) {
next unless(defined($opt{$o}));
if($o eq '-translate') {
my @mx=_translate(@{$opt{$o}});
$mtx=$mtx->multiply(PDF::API2::Matrix->new(
[$mx[0],$mx[1],0],
[$mx[2],$mx[3],0],
[$mx[4],$mx[5],1]
));
} elsif($o eq '-rotate') {
my @mx=_rotate($opt{$o});
$mtx=$mtx->multiply(PDF::API2::Matrix->new(
[$mx[0],$mx[1],0],
[$mx[2],$mx[3],0],
[$mx[4],$mx[5],1]
));
} elsif($o eq '-scale') {
my @mx=_scale(@{$opt{$o}});
$mtx=$mtx->multiply(PDF::API2::Matrix->new(
[$mx[0],$mx[1],0],
[$mx[2],$mx[3],0],
[$mx[4],$mx[5],1]
));
} elsif($o eq '-skew') {
my @mx=_skew(@{$opt{$o}});
$mtx=$mtx->multiply(PDF::API2::Matrix->new(
[$mx[0],$mx[1],0],
[$mx[2],$mx[3],0],
[$mx[4],$mx[5],1]
));
} elsif($o eq '-matrix') {
my @mx=@{$opt{$o}};
$mtx=$mtx->multiply(PDF::API2::Matrix->new(
[$mx[0],$mx[1],0],
[$mx[2],$mx[3],0],
[$mx[4],$mx[5],1]
));
}
}
if($opt{-point})
{
my $mp=PDF::API2::Matrix->new([$opt{-point}->[0],$opt{-point}->[1],1]);
$mp=$mp->multiply($mtx);
return($mp->[0][0],$mp->[0][1]);
}
return(
$mtx->[0][0],$mtx->[0][1],
$mtx->[1][0],$mtx->[1][1],
$mtx->[2][0],$mtx->[2][1]
);
}
sub transform {
my ($self,%opt)=@_;
$self->matrix(_transform(%opt));
if($opt{-translate}) {
@{$self->{' translate'}}=@{$opt{-translate}};
} else {
@{$self->{' translate'}}=(0,0);
}
if($opt{-rotate}) {
$self->{' rotate'}=$opt{-rotate};
} else {
$self->{' rotate'}=0;
}
if($opt{-scale}) {
@{$self->{' scale'}}=@{$opt{-scale}};
} else {
@{$self->{' scale'}}=(1,1);
}
if($opt{-skew}) {
@{$self->{' skew'}}=@{$opt{-skew}};
} else {
@{$self->{' skew'}}=(0,0);
}
return($self);
}
=item $co->fillcolor @colors
=item $co->strokecolor @colors
Sets fill-/strokecolor, see PDF::API2::Util for a list of possible color specifiers.
B<Examples:>
$co->fillcolor('blue'); # blue
$co->strokecolor('#FF0000'); # red
$co->fillcolor('%FFF000000'); # cyan
=cut
# default colorspaces: rgb/hsv/named cmyk/hsl lab
# ... only one text string
#
# pattern or shading space
# ... only one object
#
# legacy greylevel
# ... only one value
#
#
sub _makecolor {
my ($self,$sf,@clr)=@_;
if($clr[0]=~/^[a-z\#\!]+/) {
# colorname or #! specifier
# with rgb target colorspace
# namecolor returns always a RGB
return(namecolor($clr[0]),($sf?'rg':'RG'));
} elsif($clr[0]=~/^[\%]+/) {
# % specifier
# with cmyk target colorspace
return(namecolor_cmyk($clr[0]),($sf?'k':'K'));
} elsif($clr[0]=~/^[\$\&]/) {
# &$ specifier
# with L*a*b target colorspace
if(!defined $self->resource('ColorSpace','LabS')) {
my $dc=PDFDict();
my $cs=PDFArray(PDFName('Lab'),$dc);
# $dc->{WhitePoint}=PDFArray(map { PDFNum($_) } qw(0.9505 1.0000 1.0890));
$dc->{WhitePoint}=PDFArray(map { PDFNum($_) } qw(1 1 1));
$dc->{Range}=PDFArray(map { PDFNum($_) } qw(-128 127 -128 127));
$dc->{Gamma}=PDFArray(map { PDFNum($_) } qw(2.2 2.2 2.2));
$self->resource('ColorSpace','LabS',$cs);
}
return('/LabS',($sf?'cs':'CS'),namecolor_lab($clr[0]),($sf?'sc':'SC'));
} elsif((scalar @clr == 1) && ref($clr[0])) {
# pattern or shading space
return('/Pattern',($sf?'cs':'CS'),'/'.($clr[0]->name),($sf?'scn':'SCN'));
} elsif(scalar @clr == 1) {
# grey color spec.
while($clr[0]>1) { $clr[0]/=255; }
# adjusted for 8/16/32bit spec.
return($clr[0],($sf?'g':'G'));
} elsif(scalar @clr > 1 && ref($clr[0])) {
# indexed colorspace plus color-index
# or custom colorspace plus param
my $cs=shift @clr;
return('/'.($cs->name),($sf?'cs':'CS'),$cs->param(@clr),($sf?'sc':'SC'));
} elsif(scalar @clr == 2) {
# indexed colorspace plus color-index
# or custom colorspace plus param
return('/'.($clr[0]->name),($sf?'cs':'CS'),$clr[0]->param($clr[1]),($sf?'sc':'SC'));
} elsif(scalar @clr == 3) {
# legacy rgb color-spec (0 <= x <= 1)
#if(!defined $self->resource('ColorSpace','RgbS')) {
# my $dc=PDFDict();
# my $cs=PDFArray(PDFName('CalRGB'),$dc);
# $dc->{WhitePoint}=PDFArray(map { PDFNum($_) } qw(0.9505 1.0000 1.0890));
# $dc->{Gamma}=PDFArray(map { PDFNum($_) } qw(2.2 2.2 2.2));
# $self->resource('ColorSpace','RgbS',$cs);
#}
#return('/RgbS',($sf?'cs':'CS'),floats5(@clr),($sf?'sc':'SC'));
return(floats($clr[0],$clr[1],$clr[2]),($sf?'rg':'RG'));
} elsif(scalar @clr == 4) {
# legacy cmyk color-spec (0 <= x <= 1)
return(floats($clr[0],$clr[1],$clr[2],$clr[3]),($sf?'k':'K'));
} else {
die 'invalid color specification.';
}
}
sub _fillcolor
{
my ($self,@clrs)=@_;
if(ref($clrs[0]) =~ m|^PDF::API2::Resource::ColorSpace|)
{
$self->resource('ColorSpace',$clrs[0]->name,$clrs[0]);
}
elsif(ref($clrs[0]) =~ m|^PDF::API2::Resource::Pattern|)
{
$self->resource('Pattern',$clrs[0]->name,$clrs[0]);
}
return($self->_makecolor(1,@clrs));
}
sub fillcolor
{
my $self=shift @_;
if(scalar @_)
{
@{$self->{' fillcolor'}}=@_;
$self->add($self->_fillcolor(@_));
}
return(@{$self->{' fillcolor'}});
}
sub _strokecolor
{
my ($self,@clrs)=@_;
if(ref($clrs[0]) =~ m|^PDF::API2::Resource::ColorSpace|)
{
$self->resource('ColorSpace',$clrs[0]->name,$clrs[0]);
}
elsif(ref($clrs[0]) =~ m|^PDF::API2::Resource::Pattern|)
{
$self->resource('Pattern',$clrs[0]->name,$clrs[0]);
}
return($self->_makecolor(0,@clrs));
}
sub strokecolor
{
my $self=shift @_;
if(scalar @_)
{
@{$self->{' strokecolor'}}=@_;
$self->add($self->_strokecolor(@_));
}
return(@{$self->{' strokecolor'}});
}
=head1 GRAPHICS METHODS
=over 4
=item $gfx->move $x, $y
=cut
sub _move
{
my($x,$y)=@_;
return(floats($x,$y),'m');
}
sub move
{ # x,y ...
my $self=shift @_;
my($x,$y);
while(defined($x=shift @_))
{
$y=shift @_;
$self->{' x'}=$x;
$self->{' y'}=$y;
$self->{' mx'}=$x;
$self->{' my'}=$y;
if(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1)
{
$self->add_post(floats($x,$y),'m');
}
else
{
$self->add(floats($x,$y),'m');
}
}
return($self);
}
=item $gfx->line $x, $y
=cut
sub _line
{
my($x,$y)=@_;
return(floats($x,$y),'l');
}
sub line
{ # x,y ...
my $self=shift @_;
my($x,$y);
while(defined($x=shift @_))
{
$y=shift @_;
$self->{' x'}=$x;
$self->{' y'}=$y;
if(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1)
{
$self->add_post(floats($x,$y),'l');
}
else
{
$self->add(floats($x,$y),'l');
}
}
return($self);
}
=item $gfx->hline $x
=cut
sub hline
{
my($self,$x)=@_;
if(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1)
{
$self->add_post(floats($x,$self->{' y'}),'l');
}
else
{
$self->add(floats($x,$self->{' y'}),'l');
}
$self->{' x'}=$x;
return($self);
}
=item $gfx->vline $y
=cut
sub vline
{
my($self,$y)=@_;
if(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1)
{
$self->add_post(floats($self->{' x'},$y),'l');
}
else
{
$self->add(floats($self->{' x'},$y),'l');
}
$self->{' y'}=$y;
return($self);
}
=item $gfx->curve $cx1, $cy1, $cx2, $cy2, $x, $y
=cut
sub curve
{ # x1,y1,x2,y2,x3,y3 ...
my $self=shift @_;
my($x1,$y1,$x2,$y2,$x3,$y3);
while(defined($x1=shift @_))
{
$y1=shift @_;
$x2=shift @_;
$y2=shift @_;
$x3=shift @_;
$y3=shift @_;
if(defined($self->{' apiistext'}) && $self->{' apiistext'} == 1)
{
$self->add_post(floats($x1,$y1,$x2,$y2,$x3,$y3),'c');
}
else
{
$self->add(floats($x1,$y1,$x2,$y2,$x3,$y3),'c');
}
$self->{' x'}=$x3;
$self->{' y'}=$y3;
}
return($self);
}
=item $gfx->spline $cx1, $cy1, $x, $y
=cut
sub spline
{
my $self=shift @_;
while(scalar @_ >= 4)
{
my $cx=shift @_;
my $cy=shift @_;
my $x=shift @_;
my $y=shift @_;
my $c1x=(2*$cx+$self->{' x'})/3;
my $c1y=(2*$cy+$self->{' y'})/3;
my $c2x=(2*$cx+$x)/3;
my $c2y=(2*$cy+$y)/3;
$self->curve($c1x,$c1y,$c2x,$c2y,$x,$y);
}
}
sub arctocurve
{
my ($a,$b,$alpha,$beta)=@_;
if(abs($beta-$alpha) > 30)
{
return (
arctocurve($a,$b,$alpha,($beta+$alpha)/2),
arctocurve($a,$b,($beta+$alpha)/2,$beta)
);
}
else
{
$alpha = ($alpha * pi / 180);
$beta = ($beta * pi / 180);
my $bcp = (4.0/3 * (1 - cos(($beta - $alpha)/2)) / sin(($beta - $alpha)/2));
my $sin_alpha = sin($alpha);
my $sin_beta = sin($beta);
my $cos_alpha = cos($alpha);
my $cos_beta = cos($beta);
my $p0_x = $a * $cos_alpha;
my $p0_y = $b * $sin_alpha;
my $p1_x = $a * ($cos_alpha - $bcp * $sin_alpha);
my $p1_y = $b * ($sin_alpha + $bcp * $cos_alpha);
my $p2_x = $a * ($cos_beta + $bcp * $sin_beta);
my $p2_y = $b * ($sin_beta - $bcp * $cos_beta);
my $p3_x = $a * $cos_beta;
my $p3_y = $b * $sin_beta;
return($p0_x,$p0_y,$p1_x,$p1_y,$p2_x,$p2_y,$p3_x,$p3_y);
}
}
=item $gfx->arc $x, $y, $a, $b, $alfa, $beta, $move
will draw an arc centered at x,y with minor/major-axis
given by a,b from alfa to beta (degrees). move must be
set to 1, unless you want to continue an existing path.
=cut
sub arc
{ # x,y,a,b,alf,bet[,mov]
my ($self,$x,$y,$a,$b,$alpha,$beta,$move)=@_;
my @points=arctocurve($a,$b,$alpha,$beta);
my ($p0_x,$p0_y,$p1_x,$p1_y,$p2_x,$p2_y,$p3_x,$p3_y);
$p0_x= $x + shift @points;
$p0_y= $y + shift @points;
$self->move($p0_x,$p0_y) if($move);
while(scalar @points > 0)
{
$p1_x= $x + shift @points;
$p1_y= $y + shift @points;
$p2_x= $x + shift @points;
$p2_y= $y + shift @points;
$p3_x= $x + shift @points;
$p3_y= $y + shift @points;
$self->curve($p1_x,$p1_y,$p2_x,$p2_y,$p3_x,$p3_y);
shift @points;
shift @points;
$self->{' x'}=$p3_x;
$self->{' y'}=$p3_y;
}
return($self);
}
=item $gfx->ellipse $x, $y, $a, $b
=cut
sub ellipse
{
my ($self,$x,$y,$a,$b) = @_;
$self->arc($x,$y,$a,$b,0,360,1);
$self->close;
return($self);
}
=item $gfx->circle $x, $y, $r
=cut
sub circle
{
my ($self,$x,$y,$r) = @_;
$self->arc($x,$y,$r,$r,0,360,1);
$self->close;
return($self);
}
=item $gfx->bogen $x1, $y1, $x2, $y2, $r, $move, $larc, $span
will draw an arc of a circle from x1,y1 to x2,y2 with radius r.
move must be set to 1, unless you want to continue an existing path.
larc can be set to 1, if you want to draw the larger instead of the
shorter arc. span can be set to 1, if you want to draw the arc
on the other side. NOTE: 2*r cannot be smaller than the distance
from x1,y1 to x2,y2.
=cut
sub bogen
{ # x1,y1,x2,y2,r[,move[,large-arc[,span-factor]]]
my ($self,$x1,$y1,$x2,$y2,$r,$move,$larc,$spf) = @_;
my ($p0_x,$p0_y,$p1_x,$p1_y,$p2_x,$p2_y,$p3_x,$p3_y);
my $x=$x2-$x1;
$x=$x1-$x2 if($spf>0);
my $y=$y2-$y1;
$y=$y1-$y2 if($spf>0);
my $z=sqrt($x**2+$y**2);
my $alfa_rad=asin($y/$z);
if($spf>0)
{
$alfa_rad-=pi/2 if($x<0);
$alfa_rad=-$alfa_rad if($y>0);
}
else
{
$alfa_rad+=pi/2 if($x<0);
$alfa_rad=-$alfa_rad if($y<0);
}
my $alfa=rad2deg($alfa_rad);
my $d=2*$r;
my ($beta,$beta_rad,@points);
$beta=rad2deg(2*asin($z/$d));
$beta=360-$beta if($larc>0);
$beta_rad=deg2rad($beta);
@points=arctocurve($r,$r,90+$alfa+$beta/2,90+$alfa-$beta/2);
if($spf>0)
{
my @pts=@points;
@points=();
while($y=pop @pts){
$x=pop @pts;
push(@points,$x,$y);
}
}
$p0_x=shift @points;
$p0_y=shift @points;
$x=$x1-$p0_x;
$y=$y1-$p0_y;
$self->move($x,$y) if($move);
while(scalar @points > 0)
{
$p1_x= $x + shift @points;
$p1_y= $y + shift @points;
$p2_x= $x + shift @points;
$p2_y= $y + shift @points;
$p3_x= $x + shift @points;
$p3_y= $y + shift @points;
$self->curve($p1_x,$p1_y,$p2_x,$p2_y,$p3_x,$p3_y);
shift @points;
shift @points;
}
return($self);
}
=item $gfx->pie $x, $y, $a, $b, $alfa, $beta
=cut
sub pie
{
my $self=shift @_;
my ($x,$y,$a,$b,$alfa,$beta)=@_;
my ($p0_x,$p0_y)=arctocurve($a,$b,$alfa,$beta);
$self->move($x,$y);
$self->line($p0_x+$x,$p0_y+$y);
$self->arc($x,$y,$a,$b,$alfa,$beta);
$self->close;
}
=item $gfx->rect $x1,$y1, $w1,$h1, ..., $xn,$yn, $wn,$hn
=cut
sub rect
{ # x,y,w,h ...
my $self=shift @_;
my($x,$y,$w,$h);
while(defined($x=shift @_))
{
$y=shift @_;
$w=shift @_;
$h=shift @_;
$self->add(floats($x,$y,$w,$h),'re');
}
$self->{' x'}=$x;
$self->{' y'}=$y;
return($self);
}
=item $gfx->rectxy $x1,$y1, $x2,$y2
=cut
sub rectxy
{
my ($self,$x,$y,$x2,$y2)=@_;
$self->rect($x,$y,($x2-$x),($y2-$y));
return($self);
}
=item $gfx->poly $x1,$y1, ..., $xn,$yn
=cut
sub poly
{
my $self=shift @_;
my($x,$y);
$x=shift @_;
$y=shift @_;
$self->move($x,$y);
$self->line(@_);
return($self);
}
=item $gfx->close
=cut
sub close
{
my $self=shift @_;
$self->add('h');
$self->{' x'}=$self->{' mx'};
$self->{' y'}=$self->{' my'};
return($self);
}
=item $gfx->endpath
=cut
sub endpath
{
my $self=shift @_;
$self->add('n');
return($self);
}
=item $gfx->clip $nonzero
=cut
sub clip
{ # nonzero
my $self=shift @_;
$self->add(!(shift @_)?'W':'W*');
return($self);
}
=item $gfx->stroke
=cut
sub _stroke
{
return('S');
}
sub stroke
{
my $self=shift @_;
$self->add(_stroke);
return($self);
}
=item $gfx->fill $nonzero
=cut
sub fill
{ # nonzero
my $self=shift @_;
$self->add(!(shift @_)?'f':'f*');
return($self);
}
=item $gfx->fillstroke $nonzero
=cut
sub fillstroke
{ # nonzero
my $self=shift @_;
$self->add(!(shift @_)?'B':'B*');
return($self);
}
=item $gfx->image $imgobj, $x,$y, $w,$h
=item $gfx->image $imgobj, $x,$y, $scale
=item $gfx->image $imgobj, $x,$y
B<Please Note:> The width/height or scale given
is in user-space coordinates which is subject to
transformations which may have been specified beforehand.
Per default this has a 72dpi resolution, so if you want an
image to have a 150 or 300dpi resolution, you should specify
a scale of 72/150 (or 72/300) or adjust width/height accordingly.
=cut
sub image
{
my $self=shift @_;
my $img=shift @_;
my ($x,$y,$w,$h)=@_;
if(defined $img->{Metadata})
{
$self->metaStart('PPAM:PlacedImage',$img->{Metadata});
}
$self->save;
if(!defined $w)
{
$h=$img->height;
$w=$img->width;
}
elsif(!defined $h)
{
$h=$img->height*$w;
$w=$img->width*$w;
}
$self->matrix($w,0,0,$h,$x,$y);
$self->add("/".$img->name,'Do');
$self->restore;
$self->{' x'}=$x;
$self->{' y'}=$y;
$self->resource('XObject',$img->name,$img);
if(defined $img->{Metadata})
{
$self->metaEnd;
}
return($self);
}
=item $gfx->formimage $imgobj, $x, $y, $scale
=item $gfx->formimage $imgobj, $x, $y
B<Please Note:> *TODO*
=cut
sub formimage
{
my $self=shift @_;
my $img=shift @_;
my ($x,$y,$s)=@_;
$self->save;
if(!defined $s)
{
$self->matrix(1,0,0,1,$x,$y);
}
else
{
$self->matrix($s,0,0,$s,$x,$y);
}
$self->add("/".$img->name,'Do');
$self->restore;
$self->resource('XObject',$img->name,$img);
return($self);
}
=item $gfx->shade $shadeobj, $x1,$y1, $x2,$y2
=cut
sub shade
{
my $self=shift @_;
my $shade=shift @_;
my @cord=@_;
my @tm=(
$cord[2]-$cord[0] , 0,
0 , $cord[3]-$cord[1],
$cord[0] , $cord[1]
);
$self->save;
$self->matrix(@tm);
$self->add("/".$shade->name,'sh');
$self->resource('Shading',$shade->name,$shade);
$self->restore;
return($self);
}
=item $gfx->egstate $egsobj
=cut
sub egstate
{
my $self=shift @_;
my $egs=shift @_;
$self->add("/".$egs->name,'gs');
$self->resource('ExtGState',$egs->name,$egs);
return($self);
}
=item $hyb->textstart
=cut
sub textstart
{
my ($self)=@_;
if(!defined($self->{' apiistext'}) || $self->{' apiistext'} != 1)
{
$self->add(' BT ');
$self->{' apiistext'}=1;
$self->{' font'}=undef;
$self->{' fontset'}=0;
$self->{' fontsize'}=0;
$self->{' charspace'}=0;
$self->{' hspace'}=100;
$self->{' wordspace'}=0;
$self->{' lead'}=0;
$self->{' rise'}=0;
$self->{' render'}=0;
@{$self->{' matrix'}}=(1,0,0,1,0,0);
@{$self->{' textmatrix'}}=(1,0,0,1,0,0);
@{$self->{' textlinematrix'}}=(0,0);
@{$self->{' fillcolor'}}=(0);
@{$self->{' strokecolor'}}=(0);
@{$self->{' translate'}}=(0,0);
@{$self->{' scale'}}=(1,1);
@{$self->{' skew'}}=(0,0);
$self->{' rotate'}=0;
}
return($self);
}
=item %state = $txt->textstate %state
Sets or gets the current text-object state.
=cut
sub textstate
{
my $self=shift @_;
my %state;
if(scalar @_)
{
%state=@_;
foreach my $k (qw( charspace hspace wordspace lead rise render ))
{
next unless($state{$k});
eval ' $self->'.$k.'($state{$k}); ';
}
if($state{font} && $state{fontsize})
{
$self->font($state{font},$state{fontsize});
}
if($state{textmatrix})
{
$self->matrix(@{$state{textmatrix}});
@{$self->{' translate'}}=@{$state{translate}};
$self->{' rotate'}=$state{rotate};
@{$self->{' scale'}}=@{$state{scale}};
@{$self->{' skew'}}=@{$state{skew}};
}
if($state{fillcolor})
{
$self->fillcolor(@{$state{fillcolor}});
}
if($state{strokecolor})
{
$self->strokecolor(@{$state{strokecolor}});
}
%state=();
}
else
{
foreach my $k (qw( font fontsize charspace hspace wordspace lead rise render ))
{
$state{$k}=$self->{" $k"};
}
$state{matrix}=[@{$self->{" matrix"}}];
$state{textmatrix}=[@{$self->{" textmatrix"}}];
$state{textlinematrix}=[@{$self->{" textlinematrix"}}];
$state{rotate}=$self->{" rotate"};
$state{scale}=[@{$self->{" scale"}}];
$state{skew}=[@{$self->{" skew"}}];
$state{translate}=[@{$self->{" translate"}}];
$state{fillcolor}=[@{$self->{" fillcolor"}}];
$state{strokecolor}=[@{$self->{" strokecolor"}}];
}
return(%state);
}
=item ($tx,$ty) = $txt->textpos
Gets the current estimated text position.
B<Note:> This is relative to text-space.
=cut
sub _textpos
{
my ($self,@xy)=@_;
my ($x,$y)=(0,0);
while(scalar @xy > 0)
{
$x+=shift @xy;
$y+=shift @xy;
}
my (@m)=_transform(
-matrix=>$self->{" textmatrix"},
-point=>[$x,$y]
);
return($m[0],$m[1]);
}
sub textpos
{
my $self=shift @_;
return($self->_textpos(@{$self->{" textlinematrix"}}));
}
sub textpos2
{
my $self=shift @_;
return(@{$self->{" textlinematrix"}});
}
=item $txt->transform_rel %opts
Sets transformations (eg. translate, rotate, scale, skew) in pdf-canonical order,
but relative to the previously set values.
B<Example:>
$txt->transform_rel(
-translate => [$x,$y],
-rotate => $rot,
-scale => [$sx,$sy],
-skew => [$sa,$sb],
)
=cut
sub transform_rel {
my ($self,%opt)=@_;
my ($sa1,$sb1)=@{$opt{-skew} ? $opt{-skew} : [0,0]};
my ($sa0,$sb0)=@{$self->{" skew"}};
my ($sx1,$sy1)=@{$opt{-scale} ? $opt{-scale} : [1,1]};
my ($sx0,$sy0)=@{$self->{" scale"}};
my $rot1=$opt{"-rotate"} || 0;
my $rot0=$self->{" rotate"};
my ($tx1,$ty1)=@{$opt{-translate} ? $opt{-translate} : [0,0]};
my ($tx0,$ty0)=@{$self->{" translate"}};
$self->transform(
-skew=>[$sa0+$sa1,$sb0+$sb1],
-scale=>[$sx0*$sx1,$sy0*$sy1],
-rotate=>$rot0+$rot1,
-translate=>[$tx0+$tx1,$ty0+$ty1],
);
return($self);
}
sub matrix_update {
use PDF::API2::Matrix;
my ($self,$tx,$ty)=@_;
$self->{' textlinematrix'}->[0]+=$tx;
$self->{' textlinematrix'}->[1]+=$ty;
return($self);
}
=item $txt->font $fontobj,$size
=item $txt->fontset $fontobj,$size
I<The fontset method WILL NOT APPLY the font+size to the pdf-stream, but
which will later be done by the text-methods.>
B<Only use fontset if you know what you are doing, there is no super-secret failsave!>
=cut
sub _font
{
my ($font,$size)=@_;
if($font->isvirtual)
{
return('/'.$font->fontlist->[0]->name.' '.float($size).' Tf');
}
else
{
return('/'.$font->name.' '.float($size).' Tf');
}
}
sub font
{
my ($self,$font,$size)=@_;
$self->fontset($font,$size);
$self->add(_font($font,$size));
$self->{' fontset'}=1;
return($self);
}
sub fontset {
my ($self,$font,$size)=@_;
$self->{' font'}=$font;
$self->{' fontsize'}=$size;
$self->{' fontset'}=0;
if($font->isvirtual)
{
foreach my $f (@{$font->fontlist})
{
$self->resource('Font',$f->name,$f);
}
}
else
{
$self->resource('Font',$font->name,$font);
}
return($self);
}
=item $spacing = $txt->charspace $spacing
=cut
sub _charspace
{
my ($para)=@_;
return(float($para,6).' Tc');
}
sub charspace
{
my ($self,$para)=@_;
if(defined $para)
{
$self->{' charspace'}=$para;
$self->add(_charspace($para));
}
return $self->{' charspace'};
}
=item $spacing = $txt->wordspace $spacing
=cut
sub _wordspace
{
my ($para)=@_;
return(float($para,6).' Tw');
}
sub wordspace {
my ($self,$para)=@_;
if(defined $para)
{
$self->{' wordspace'}=$para;
$self->add(_wordspace($para));
}
return $self->{' wordspace'};
}
=item $spacing = $txt->hspace $spacing
=cut
sub _hspace
{
my ($para)=@_;
return(float($para,6).' Tz');
}
sub hspace
{
my ($self,$para)=@_;
if(defined $para)
{
$self->{' hspace'}=$para;
$self->add(_hspace($para));
}
return $self->{' hspace'};
}
=item $leading = $txt->lead $leading
=cut
sub _lead
{
my ($para)=@_;
return(float($para).' TL');
}
sub lead
{
my ($self,$para)=@_;
if (defined ($para))
{
$self->{' lead'} = $para;
$self->add(_lead($para));
}
return $self->{' lead'};
}
=item $rise = $txt->rise $rise
=cut
sub _rise
{
my ($para)=@_;
return(float($para).' Ts');
}
sub rise
{
my ($self,$para)=@_;
if (defined ($para))
{
$self->{' rise'} = $para;
$self->add(_rise($para));
}
return $self->{' rise'};
}
=item $rendering = $txt->render $rendering
=cut
sub _render
{
my ($para)=@_;
return(intg($para).' Tr');
}
sub render
{
my ($self,$para)=@_;
if (defined ($para))
{
$self->{' render'} = $para;
$self->add(_render($para));
}
return $self->{' render'};
}
=item $txt->cr $linesize
takes an optional argument giving a custom leading between lines.
=cut
sub cr
{
my ($self,$para)=@_;
if(defined($para))
{
$self->add(0,float($para),'Td');
$self->matrix_update(0,$para);
}
else
{
$self->add('T*');
$self->matrix_update(0,$self->lead);
}
$self->{' textlinematrix'}->[0]=0;
}
=item $txt->nl
=cut
sub nl
{
my ($self,$width)=@_;
$self->add('T*');
$self->matrix_update(-($width||0),-$self->lead);
$self->{' textlinematrix'}->[0]=0;
}
=item $txt->distance $dx,$dy
=cut
sub distance
{
my ($self,$dx,$dy)=@_;
$self->add(float($dx),float($dy),'Td');
$self->matrix_update($dx,$dy);
$self->{' textlinematrix'}->[0]=$dx;
}
=item $width = $txt->advancewidth $string [, %textstate]
Returns the width of the string based on all currently set text-attributes
or on those overridden by %textstate.
=cut
sub advancewidth
{
my ($self,$text,@opts)=@_;
if(scalar @opts > 1)
{
my %opts=@opts;
foreach my $k (qw[ font fontsize wordspace charspace hspace])
{
$opts{$k}=$self->{" $k"} unless(defined $opts{$k});
}
my $glyph_width=$opts{font}->width($text)*$opts{fontsize};
my @txt=split(/\x20/,$text);
my $num_space=(scalar @txt)-1;
my $num_char=length($text);
my $word_spaces=$opts{wordspace}*$num_space;
my $char_spaces=$opts{charspace}*$num_char;
my $advance=($glyph_width+$word_spaces+$char_spaces)*$opts{hspace}/100;
return $advance;
}
else
{
my $glyph_width=$self->{' font'}->width($text)*$self->{' fontsize'};
my @txt=split(/\x20/,$text);
my $num_space=(scalar @txt)-1;
my $num_char=length($text);
my $word_spaces=$self->wordspace*$num_space;
my $char_spaces=$self->charspace*$num_char;
my $advance=($glyph_width+$word_spaces+$char_spaces)*$self->hspace/100;
return $advance;
}
}
=item $width = $txt->text $text, %options
Applys text to the content and optionally returns the width of the given text.
Options
=over 4
=item -indent
Indent the text by the number of points.
=item -underline
If this is a scalar, it is the distance, in points, below the baseline where
the line is drawn. The line thickness is one point. If it is a reference to an
array, each pair is the distance below the baseline and the thickness of the
line (ie., C<-underline=E<gt>[2,1,4,2]> will draw a double underline
with the lower twice as thick as the upper).
If thickness is a reference to an array, the first value is the thickness
and the second value is the color of the line (ie.,
C<-underline=E<gt>[2,[1,'red'],4,[2,'#0000ff']]> will draw a "red" and a
"blue" line).
You can also use the string C<'auto'> for either or both distance and thickness
values to auto-magically calculate best values from the font-definition.
=back
=cut
sub _text_underline
{
my ($self,$xy1,$xy2,$underline,$color)=@_;
$color||='black';
my @underline=();
if(ref($underline) eq 'ARRAY')
{
@underline=@{$underline};
}
else
{
@underline=($underline,1);
}
push @underline,1 if(@underline%2);
my $underlineposition=(-$self->{' font'}->underlineposition()*$self->{' fontsize'}/1000||1);
my $underlinethickness=($self->{' font'}->underlinethickness()*$self->{' fontsize'}/1000||1);
my $pos=1;
while(@underline)
{
$self->add_post(_save);
my $distance=shift @underline;
my $thickness=shift @underline;
my $scolor=$color;
if(ref $thickness)
{
($thickness,$scolor)=@{$thickness};
}
if($distance eq 'auto')
{
$distance=$pos*$underlineposition;
}
if($thickness eq 'auto')
{
$thickness=$underlinethickness;
}
my ($x1,$y1)=$self->_textpos(@{$xy1},0,-($distance+($thickness/2)));
my ($x2,$y2)=$self->_textpos(@{$xy2},0,-($distance+($thickness/2)));
$self->add_post($self->_strokecolor($scolor));
$self->add_post(_linewidth($thickness));
$self->add_post(_move($x1,$y1));
$self->add_post(_line($x2,$y2));
$self->add_post(_stroke);
$self->add_post(_restore);
$pos++;
}
}
sub text
{
my ($self,$text,%opt)=@_;
my $wd=0;
if($self->{' fontset'}==0)
{
$self->font($self->{' font'},$self->{' fontsize'});
$self->{' fontset'}=1;
}
if(defined $opt{-indent})
{
$self->add('[',(-$opt{-indent}*(1000/$self->{' fontsize'})*(100/$self->hspace)),']','TJ');
$wd+=$opt{-indent};
$self->matrix_update($wd,0);
}
my $ulxy1=[$self->textpos2];
if($self->{' font'}->isvirtual)
{
$self->add($self->{' font'}->text($text,$self->{' fontsize'}));
}
else
{
$self->add($self->{' font'}->text($text),'Tj');
}
$wd=$self->advancewidth($text);
$self->matrix_update($wd,0);
my $ulxy2=[$self->textpos2];
if(defined $opt{-underline})
{
$self->_text_underline($ulxy1,$ulxy2,$opt{-underline},$opt{-strokecolor});
}
return($wd);
}
=item $txt->text_center $text
=cut
sub text_center
{
my ($self,$text,@opts)=@_;
my $width=$self->advancewidth($text);
return $self->text($text,-indent=>-($width/2),@opts);
}
=item $txt->text_right $text, %options
=cut
sub text_right
{
my ($self,$text,@opts)=@_;
my $width=$self->advancewidth($text);
return $self->text($text,-indent=>-$width,@opts);
}
=item $width = $txt->text_justified $text, $width, %options
** DEVELOPER METHOD **
=cut
sub text_justified
{
my ($self,$text,$width,%opts)=@_;
my $hs=$self->hspace;
$self->hspace($hs*($width/$self->advancewidth($text)));
$self->text($text,%opts);
$self->hspace($hs);
return($width);
}
sub _text_fill_line
{
my ($self,$text,$width,$over)=@_;
my @txt=split(/\x20/,$text);
my @line=();
local $";
$"=' ';
while(@txt)
{
push @line,(shift @txt);
last if($self->advancewidth("@line")>$width);
}
if(!$over && (scalar @line > 1) && ($self->advancewidth("@line") > $width))
{
unshift @txt,pop @line;
}
my $ret="@txt";
my $line="@line";
return($line,$ret);
}
=item ($width,$chunktext) = $txt->text_fill_left $text, $width
** DEVELOPER METHOD **
=cut
sub text_fill_left
{
my ($self,$text,$width,%opts)=@_;
my ($line,$ret)=$self->_text_fill_line($text,$width,1);
$width=$self->text($line,%opts);
return($width,$ret);
}
=item ($width,$chunktext) = $txt->text_fill_center $text, $width, %options
** DEVELOPER METHOD **
=cut
sub text_fill_center
{
my ($self,$text,$width,%opts)=@_;
my ($line,$ret)=$self->_text_fill_line($text,$width,1);
$width=$self->text_center($line,%opts);
return($width,$ret);
}
=item ($width,$chunktext) = $txt->text_fill_right $text, $width
** DEVELOPER METHOD **
=cut
sub text_fill_right
{
my ($self,$text,$width,%opts)=@_;
my ($line,$ret)=$self->_text_fill_line($text,$width,1);
$width=$self->text_right($line,%opts);
return($width,$ret);
}
=item ($width,$chunktext) = $txt->text_fill_justified $text, $width
** DEVELOPER METHOD **
=cut
sub text_fill_justified
{
my ($self,$text,$width,%opts)=@_;
my ($line,$ret)=$self->_text_fill_line($text,$width,1);
my $hs=$self->hspace;
my $w=$self->advancewidth($line);
if($ret||$w>=$width)
{
$self->hspace($hs*($width/$w));
}
$width=$self->text($line,%opts);
$self->hspace($hs);
return($width,$ret);
}
=item $overflow_text = $txt->paragraph $text, $width, $height, %options
** DEVELOPER METHOD **
Apply the text within the rectangle and return any leftover text.
B<Options>
=over 4
=item -align => $choice
Choice is 'justified', 'right', 'center', 'left'
Default is 'left'
=item -underline => $distance
=item -underline => [ $distance, $thickness, ... ]
If a scalar, distance below baseline,
else array reference with pairs of distance and line thickness.
=back
B<Example:>
$txt->font($font,$fontsize);
$txt->lead($lead);
$txt->translate($x,$y);
$overflow = $txt->paragraph( 'long paragraph here ...',
$width,
$y+$lead-$bottom_margin );
=cut
sub paragraph
{
my ($self,$text,$width,$height,%opts)=@_;
my @line=();
my $nwidth=0;
my $lead=$self->lead();
while(length($text)>0)
{
last if(($height-=$lead)<0);
if($opts{-align}=~/^j/i)
{
($nwidth,$text)=$self->text_fill_justified($text,$width,%opts);
}
elsif($opts{-align}=~/^r/i)
{
($nwidth,$text)=$self->text_fill_right($text,$width,%opts);
}
elsif($opts{-align}=~/^c/i)
{
($nwidth,$text)=$self->text_fill_center($text,$width,%opts);
}
else
{
($nwidth,$text)=$self->text_fill_left($text,$width,%opts);
}
$self->nl;
}
return($text);
}
=item $hyb->textend
=cut
sub textend {
my ($self)=@_;
if($self->{' apiistext'} == 1) {
$self->add(' ET ',$self->{' poststream'});
$self->{' apiistext'}=0;
$self->{' poststream'}='';
}
return($self);
}
=item $width = $txt->textlabel $x, $y, $font, $size, $text, %options
Applys text with options, but without teststart/end and optionally returns the width of the given text.
B<Example:>
$t = $page->gfx;
$t->textlabel(300,700,$myfont,20,'Page Header',
-rotate => -30,
-color => '#FF0000',
-hspace => 120,
-center => 1,
);
=cut
sub textlabel {
my ($self,$x,$y,$font,$size,$text,%opts,$wht) = @_;
my %trans_opts=( -translate => [$x,$y] );
my %text_state=();
$trans_opts{-rotate} = $opts{-rotate} if($opts{-rotate});
my $wastext = $self->{' apiistext'};
if($wastext) {
%text_state=$self->textstate;
$self->textend;
}
$self->save;
$self->textstart;
$self->transform(%trans_opts);
$self->fillcolor(ref($opts{-color}) ? @{$opts{-color}} : $opts{-color}) if($opts{-color});
$self->strokecolor(ref($opts{-strokecolor}) ? @{$opts{-strokecolor}} : $opts{-strokecolor}) if($opts{-strokecolor});
$self->font($font,$size);
$self->charspace($opts{-charspace}) if($opts{-charspace});
$self->hspace($opts{-hspace}) if($opts{-hspace});
$self->wordspace($opts{-wordspace}) if($opts{-wordspace});
$self->render($opts{-render}) if($opts{-render});
if($opts{-right} || $opts{-align}=~/^r/i) {
$wht = $self->text_right($text,%opts);
} elsif($opts{-center} || $opts{-align}=~/^c/i) {
$wht = $self->text_center($text,%opts);
} else {
$wht = $self->text($text,%opts);
}
$self->textend;
$self->restore;
if($wastext) {
$self->textstart;
$self->textstate(%text_state);
}
return($wht);
}
sub resource
{
my ($self, $type, $key, $obj, $force) = @_;
if($self->{' apipage'})
{
# we are a content stream on a page.
return( $self->{' apipage'}->resource($type, $key, $obj, $force) );
}
else
{
# we are a self-contained content stream.
$self->{Resources}||=PDFDict();
my $dict=$self->{Resources};
$dict->realise if(ref($dict)=~/Objind$/);
$dict->{$type}||= PDFDict();
$dict->{$type}->realise if(ref($dict->{$type})=~/Objind$/);
unless (defined $obj)
{
return($dict->{$type}->{$key} || undef);
}
else
{
if($force)
{
$dict->{$type}->{$key}=$obj;
}
else
{
$dict->{$type}->{$key}||=$obj;
}
return($dict);
}
}
}
1;
__END__
=head1 AUTHOR
alfred reibenschuh
=head1 HISTORY
$Log: Content.pm,v $
Revision 1.34 2005/03/15 02:20:46 fredo
added metadata stubs
Revision 1.33 2005/03/14 22:01:05 fredo
upd 2005
Revision 1.32 2005/03/14 20:26:44 fredo
added 'auto' value for -underline parameter in text
fixed text line construction to to work under width==0 conditions
Revision 1.31 2005/02/22 22:59:49 fredo
fixed infinite loop in paragraph if words longer than a paragraph are present.
Revision 1.30 2005/02/07 19:31:24 fredo
fixed reset of textlinematrix on textmatrix set/resets
Revision 1.29 2005/01/21 10:19:48 fredo
added spline operator
Revision 1.28 2005/01/03 01:16:51 fredo
fixed textpos tracking in nl method
Revision 1.27 2004/12/31 03:59:09 fredo
fixed paragraph and text_fill_* methods
(thanks to Shawn Corey <shawn.corey@sympatico.ca>)
Revision 1.26 2004/12/31 02:53:18 fredo
minor code corrections
Revision 1.25 2004/12/31 02:06:37 fredo
fixed textpos calculation,
added underline capability
(thanks to Shawn Corey <shawn.corey@sympatico.ca>)
Revision 1.24 2004/12/29 22:01:57 fredo
advancewidth now can take a virtual textstate
Revision 1.23 2004/12/29 01:48:15 fredo
fixed _font method
Revision 1.22 2004/12/29 01:14:57 fredo
added virtual attribute support
Revision 1.21 2004/12/20 12:11:54 fredo
added fontset method to not set via 'Tf'
Revision 1.20 2004/12/16 00:30:51 fredo
added no warn for recursion
Revision 1.19 2004/12/15 16:44:43 fredo
added condition to apply font (Tf) only when needed
Revision 1.18 2004/11/25 20:53:59 fredo
fixed unifont registration
Revision 1.17 2004/11/24 20:10:31 fredo
added virtual font handling, fixed var shadow bug
Revision 1.16 2004/10/26 11:34:22 fredo
reworked text_fill for paragraph, but still being development
Revision 1.15 2004/08/31 13:50:09 fredo
fixed space vs. whitespace split bug
Revision 1.14 2004/07/29 10:46:37 fredo
added new text_fill_* methods and a simple paragraph
Revision 1.13 2004/06/21 22:33:36 fredo
added basic pattern/shading handling
Revision 1.12 2004/06/15 09:11:37 fredo
removed cr+lf
Revision 1.11 2004/06/07 19:44:12 fredo
cleaned out cr+lf for lf
Revision 1.10 2004/05/31 23:20:48 fredo
added basic platform encoding independency
Revision 1.9 2004/04/07 10:49:26 fredo
fixed handling of colorSpaces for fill/strokecolor
Revision 1.8 2004/02/12 14:46:44 fredo
removed duplicate definition of egstate method
Revision 1.7 2004/02/06 02:01:25 fredo
added save/restore around textlabel
Revision 1.6 2004/02/05 23:24:00 fredo
fixed lab behavior
Revision 1.5 2004/02/05 12:26:08 fredo
revised '_makecolor' to use Lab for hsv/hsl,
added textlabel method
Revision 1.4 2003/12/08 13:05:19 Administrator
corrected to proper licencing statement
Revision 1.3 2003/11/30 17:09:18 Administrator
merged into default
Revision 1.2.2.1 2003/11/30 16:56:21 Administrator
merged into default
Revision 1.2 2003/11/30 11:33:59 Administrator
added CVS id/log
=cut
|