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 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344
|
{
Reads an ODG Document
License: The same modified LGPL as the Free Pascal RTL
See the file COPYING.modifiedLGPL for more details
An OpenDocument document is a compressed ZIP file with the following files inside:
content.xml - Actual contents
meta.xml - Authoring data
settings.xml - User persistent viewing information, such as zoom, cursor position, etc.
styles.xml - Styles, which are the only way to do formatting
mimetype - application/vnd.oasis.opendocument.spreadsheet
META-INF\manifest.xml - Describes the other files in the archive
Specifications obtained from:
http://docs.oasis-open.org/office/v1.1/OS/OpenDocument-v1.1.pdf
Example of content.xml structure:
<?xml version="1.0" encoding="UTF-8"?>
<office:document-content xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" .....>
<office:scripts/>
<office:automatic-styles>
<style:style style:name="dp1" style:family="drawing-page"/>
<style:style style:name="gr1" style:family="graphic" style:parent-style-name="standard">
....
</office:automatic-styles>
<office:body>
<office:drawing>
<draw:page draw:name="page1" draw:style-name="dp1" draw:master-page-name="Oletus">
<draw:ellipse draw:style-name="gr2" draw:text-style-name="P1" draw:layer="layout" svg:width="11cm" svg:height="3cm" svg:x="5.5cm" svg:y="6.5cm">
<text:p/>
</draw:ellipse>
... other elements in the page...
</draw:page>
</office:drawing>
</office:body>
</office:document-content>
AUTHORS: Felipe Monteiro de Carvalho
}
unit odgvectorialreader;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, math,
zipper, {NOTE: might require zipper from FPC 2.6.2+ }
xmlread, DOM, AVL_Tree,
fpimage, fpcanvas, fgl,
fpvectorial, fpvutils, lazutf8;
type
TDoubleArray = array of Double;
TSVGTokenType = (
// moves
sttMoveTo, sttRelativeMoveTo,
// Close Path
sttClosePath,
// lines
sttLineTo, sttRelativeLineTo,
sttHorzLineTo, sttRelativeHorzLineTo, sttVertLineTo, sttRelativeVertLineTo,
// cubic beziers
sttBezierTo, sttRelativeBezierTo,
// quadratic beziers
sttQuadraticBezierTo, sttRelativeQuadraticBezierTo,
// Elliptic curves
sttEllipticArcTo, sttRelativeEllipticArcTo,
sttEllipticArcToWithAngle,
// ToDo: Find out what these are
sttUnknown,
// numbers
sttFloatValue,
// text
sttConstantValue, sttNamedEquation);
TSVGToken = class
TokenType: TSVGTokenType;
Value: Float;
StrValue: string;
end;
TSVGTokenList = specialize TFPGList<TSVGToken>;
{ TSVGPathTokenizer }
TSVGPathTokenizer = class
public
FPointSeparator, FCommaSeparator: TFormatSettings;
Tokens: TSVGTokenList;
constructor Create;
Destructor Destroy; override;
procedure AddToken(AStr: string);
procedure TokenizePathString(AStr: string);
procedure TokenizeFunctions(AStr: string);
end;
TODGStyle = class(TvStyle)
//
end;
TODGMasterPage = class
public
Name: string;
PageLayoutName: string;
StyleName: string;
end;
TODGPageLayout = class
public
Name: string;
MarginTop, MarginBottom, MarginLeft, MarginRight: Double;
PageWidth, PageHeight: Double;
end;
TCustomShapeInfo = class
public
Left, Top, Width, Height: Double; // in milimiters
ViewBox_Left, ViewBox_Top, ViewBox_Width, ViewBox_Height: Double; // unitless
Formulas: array of TvFormula;
end;
{ TvODGVectorialReader }
TvODGVectorialReader = class(TvCustomVectorialReader)
private
FPointSeparator, FCommaSeparator: TFormatSettings;
FStyles: TFPList; // of TODGStyle;
FAutomaticStyles: TFPList; // of TODGStyle;
FPageLayouts: TFPList; // of TODGPageLayout;
FMasterPages: TFPList; // of TODGMasterPage;
//FSVGPathTokenizer: TSVGPathTokenizer;
//
function ReadSpaceSeparatedFloats(AInput: string; AOtherSeparators: string): TDoubleArray;
function ReadSpaceSeparatedStrings(AInput: string; AOtherSeparators: string): TStringList;
//
procedure DeleteStyle(data,arg:pointer);
procedure ApplyGraphicAttributeToPenAndBrush(ANodeName, ANodeValue: string; var APen: TvPen; var ABrush: TvBrush);
procedure ApplyGraphicAttributeToEntity(ANodeName, ANodeValue: string; ADest: TvEntityWithPen);
procedure ApplyStyleByNameToEntity(AStyleName: string; ADest: TvEntityWithPen);
procedure ApplyTextStyleByNameToEntity(AStyleName: string; ADest: TvEntityWithPen);
procedure ApplyMasterPageToPage(AMasterPageName: string; ADest: TvVectorialPage);
//
procedure ReadStyleStyleNode(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
procedure ReadEnhancedGeometryNodeToTPath(ANode: TDOMNode; AData: TvVectorialPage; ADest: TPath; ADeltaX, ADeltaY: Double; var AInfo: TCustomShapeInfo);
procedure ConvertPathStringToTPath(AStr: string; AData: TvVectorialPage; ADest: TPath; ADeltaX, ADeltaY: Double; AInfo: TCustomShapeInfo);
function ResolveEnhancedGeometryFormula(AInput: TSVGToken; AInfo: TCustomShapeInfo): Double;
//
procedure ReadElement(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
procedure ReadCustomShapeNode(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
procedure ReadEllipseNode(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
procedure ReadFrameNode(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
procedure ReadLineNode(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
procedure ReadPathNode(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
function ReadTextPSequenceNode(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument): TvRichText;
function ReadTextPNode(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument): TvParagraph;
//
procedure ReadStylesMasterPage(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
procedure ReadStylesPageLayout(ANode: TDOMNode; AData: TvVectorialPage; ADoc: TvVectorialDocument);
//
procedure ParsePathString(AInputStr: string; ADest: TPath);
procedure GetDrawTransforms(AInputStr: string; out ASkewX, ASkewY, ARotate, ATranslateX, ATranslateY: Double);
function ReadSVGColor(AValue: string): TFPColor;
function GetAttrValue(ANode : TDOMNode; AAttrName : string) : string;
function StringWithUnitToFloat(AStr: string): Double;
procedure ConvertODGCoordinatesToFPVCoordinates(
const AData: TvVectorialPage;
const ASrcX, ASrcY: Double; var ADestX, ADestY: Double);
procedure ConvertODGDeltaToFPVDelta(
const AData: TvVectorialPage;
const ASrcX, ASrcY: Double; var ADestX, ADestY: Double);
procedure ConvertViewBoxCoordinatesToFPVCoordinates(
const AData: TvVectorialPage; const AInfo: TCustomShapeInfo;
const ASrcX, ASrcY: Double; var ADestX, ADestY: Double);
procedure ConvertViewBoxDeltaToFPVDelta(
const AInfo: TCustomShapeInfo;
const ASrcX, ASrcY: Double; var ADestX, ADestY: Double);
procedure ConvertMilimiterCoordinatesToFPVCoordinates(
const AData: TvVectorialPage;
const ASrcX, ASrcY: Double; var ADestX, ADestY: Double);
public
{ General reading methods }
constructor Create; override;
Destructor Destroy; override;
procedure ReadFromStream(AStream: TStream; AData: TvVectorialDocument); override;
procedure ReadFromFile(AFileName: string; AData: TvVectorialDocument); override;
procedure ReadFromContentXMLDocument(AXMLDocument: TXMLDocument; AData: TvVectorialDocument);
procedure ReadFromStylesXMLDocument(AXMLDocument: TXMLDocument; AData: TvVectorialDocument);
end;
implementation
const
{ OpenDocument general XML constants }
XML_HEADER = '<?xml version="1.0" encoding="utf-8" ?>';
{ OpenDocument Directory structure constants }
OPENDOC_PATH_CONTENT = 'content.xml';
OPENDOC_PATH_META = 'meta.xml';
OPENDOC_PATH_SETTINGS = 'settings.xml';
OPENDOC_PATH_STYLES = 'styles.xml';
OPENDOC_PATH_MIMETYPE = 'mimetype';
OPENDOC_PATH_METAINF = 'META-INF' + '/';
OPENDOC_PATH_METAINF_MANIFEST = 'META-INF' + '/' + 'manifest.xml';
{ OpenDocument schemas constants }
SCHEMAS_XMLNS_OFFICE = 'urn:oasis:names:tc:opendocument:xmlns:office:1.0';
SCHEMAS_XMLNS_DCTERMS = 'http://purl.org/dc/terms/';
SCHEMAS_XMLNS_META = 'urn:oasis:names:tc:opendocument:xmlns:meta:1.0';
SCHEMAS_XMLNS = 'http://schemas.openxmlformats.org/officeDocument/2006/extended-properties';
SCHEMAS_XMLNS_CONFIG = 'urn:oasis:names:tc:opendocument:xmlns:config:1.0';
SCHEMAS_XMLNS_OOO = 'http://openoffice.org/2004/office';
SCHEMAS_XMLNS_MANIFEST = 'urn:oasis:names:tc:opendocument:xmlns:manifest:1.0';
SCHEMAS_XMLNS_FO = 'urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0';
SCHEMAS_XMLNS_STYLE = 'urn:oasis:names:tc:opendocument:xmlns:style:1.0';
SCHEMAS_XMLNS_SVG = 'urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0';
SCHEMAS_XMLNS_TABLE = 'urn:oasis:names:tc:opendocument:xmlns:table:1.0';
SCHEMAS_XMLNS_TEXT = 'urn:oasis:names:tc:opendocument:xmlns:text:1.0';
SCHEMAS_XMLNS_V = 'urn:schemas-microsoft-com:vml';
SCHEMAS_XMLNS_NUMBER = 'urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0';
SCHEMAS_XMLNS_CHART = 'urn:oasis:names:tc:opendocument:xmlns:chart:1.0';
SCHEMAS_XMLNS_DR3D = 'urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0';
SCHEMAS_XMLNS_MATH = 'http://www.w3.org/1998/Math/MathML';
SCHEMAS_XMLNS_FORM = 'urn:oasis:names:tc:opendocument:xmlns:form:1.0';
SCHEMAS_XMLNS_SCRIPT = 'urn:oasis:names:tc:opendocument:xmlns:script:1.0';
SCHEMAS_XMLNS_OOOW = 'http://openoffice.org/2004/writer';
SCHEMAS_XMLNS_OOOC = 'http://openoffice.org/2004/calc';
SCHEMAS_XMLNS_DOM = 'http://www.w3.org/2001/xml-events';
SCHEMAS_XMLNS_XFORMS = 'http://www.w3.org/2002/xforms';
SCHEMAS_XMLNS_XSD = 'http://www.w3.org/2001/XMLSchema';
SCHEMAS_XMLNS_XSI = 'http://www.w3.org/2001/XMLSchema-instance';
// SVG requires hardcoding a DPI value
// The Opera Browser and Inkscape use 90 DPI, so we follow that
// 1 Inch = 25.4 milimiters
// 90 inches per pixel = (1 / 90) * 25.4 = 0.2822
// FLOAT_MILIMETERS_PER_PIXEL = 0.3528; // DPI 72 = 1 / 72 inches per pixel
FLOAT_MILIMETERS_PER_PIXEL = 0.2822; // DPI 90 = 1 / 90 inches per pixel
FLOAT_PIXELS_PER_MILIMETER = 3.5433; // DPI 90 = 1 / 90 inches per pixel
{ TSVGPathTokenizer }
constructor TSVGPathTokenizer.Create;
begin
inherited Create;
FPointSeparator := DefaultFormatSettings;
FPointSeparator.DecimalSeparator := '.';
FPointSeparator.ThousandSeparator := '#';// disable the thousand separator
Tokens := TSVGTokenList.Create;
end;
destructor TSVGPathTokenizer.Destroy;
begin
Tokens.Free;
inherited Destroy;
end;
{
<draw:enhanced-geometry
svg:viewBox="0 0 1000 1000"
draw:modifiers="0 0"
draw:enhanced-path="M 0 1000 L $0 $1 1000 1000 Z N
M 0 1000 L ?f0 ?f1 F N">
<draw:equation draw:name="f0" draw:formula="($0 + right) / 2"/>
<draw:equation draw:name="f1" draw:formula="($1 + bottom) / 2"/>
<draw:equation draw:name="f2" draw:formula="2*(bottom - top) / 3"/>
<draw:handle draw:handle-position="$0 $1"
draw:handle-range-x-minimum="0"
draw:handle-range-x-maximum="right"
draw:handle-range-y-minimum="0"
draw:handle-range-y-maximum="?f2"/>
</draw:enhanced-geometry>
}
procedure TSVGPathTokenizer.AddToken(AStr: string);
var
lToken: TSVGToken;
lStr: string;
begin
lToken := TSVGToken.Create;
lStr := Trim(AStr);
if lStr = '' then Exit;
// Moves
case lStr[1] of
'M': lToken.TokenType := sttMoveTo;
'm': lToken.TokenType := sttRelativeMoveTo;
// Close Path
'Z': lToken.TokenType := sttClosePath;
'z': lToken.TokenType := sttClosePath;
// Lines
'L': lToken.TokenType := sttLineTo;
'l': lToken.TokenType := sttRelativeLineTo;
'H': lToken.TokenType := sttHorzLineTo;
'h': lToken.TokenType := sttRelativeHorzLineTo;
'V': lToken.TokenType := sttVertLineTo;
'v': lToken.TokenType := sttRelativeVertLineTo;
// cubic Bézier curve commands
'C': lToken.TokenType := sttBezierTo;
'c': lToken.TokenType := sttRelativeBezierTo;
// quadratic beziers
'Q': lToken.TokenType := sttQuadraticBezierTo;
'q': lToken.TokenType := sttRelativeQuadraticBezierTo;
// Elliptic curves
'A': lToken.TokenType := sttEllipticArcTo;
'a': lToken.TokenType := sttRelativeEllipticArcTo;
// U -> angle- ellipse
// (x y w h t0 t1) +
// The same as the “T” command, except that a implied moveto
// to the starting point is done.
// T -> angle- ellipseto
// (x y w h t0 t1) +
// Draws a segment of an ellipse. The ellipse is specified by
// the center(x, y), the size(w, h) and the start-angle t0 and end-angle t1.
'U', 'T': lToken.TokenType := sttEllipticArcToWithAngle;
// End path
// Ends the current set of sub-paths. The sub- paths will be filled
// by using the “even-odd” filling rule. Other following subpaths will
// be filled independently.
'N': lToken.TokenType := sttUnknown;
// Types that I don't know what they do
'e': lToken.TokenType := sttUnknown;
// Constants
'$':
begin
lToken.TokenType := sttConstantValue;
lToken.Value := 0;
lToken.StrValue := lStr;
end;
// Named Equations
'?':
begin
lToken.TokenType := sttNamedEquation;
lToken.Value := 0;
lToken.StrValue := lStr;
end;
else
lToken.TokenType := sttFloatValue;
lToken.Value := StrToFloat(AStr, FPointSeparator);
end;
// Sometimes we get a command glued to a value, for example M150
if (not (lToken.TokenType in [sttFloatValue, sttConstantValue, sttNamedEquation]))
and (Length(lStr) > 1) then
begin
Tokens.Add(lToken);
lToken.TokenType := sttFloatValue;
lStr := Copy(AStr, 2, Length(AStr));
lToken.Value := StrToFloat(lStr, FPointSeparator);
end;
Tokens.Add(lToken);
end;
procedure TSVGPathTokenizer.TokenizePathString(AStr: string);
const
Str_Space: Char = ' ';
Str_Comma: Char = ',';
var
i: Integer;
lTmpStr: string = '';
lState: Integer;
lFirstTmpStrChar, lCurChar: Char;
begin
lState := 0;
i := 1;
while i <= Length(AStr) do
begin
case lState of
0: // Adding to the tmp string
begin
lCurChar := AStr[i];
if lCurChar = Str_Space then
begin
lState := 1;
AddToken(lTmpStr);
lTmpStr := '';
end
else if lCurChar = Str_Comma then
begin
AddToken(lTmpStr);
lTmpStr := '';
end
else if lCurChar in ['?', '$'] then
begin
if lTmpStr <> '' then AddToken(lTmpStr);
lState := 2;
lTmpStr := lCurChar;
end
else
begin
// Check for a break, from letter to number
if (Length(lTmpStr) >= 1) then
begin
lFirstTmpStrChar := lTmpStr[1];
if ((lFirstTmpStrChar in ['a'..'z', 'A'..'Z']) and not (lCurChar in ['a'..'z', 'A'..'Z'])) or
(not (lFirstTmpStrChar in ['a'..'z', 'A'..'Z']) and (lCurChar in ['a'..'z', 'A'..'Z'])) then
begin
AddToken(lTmpStr);
lTmpStr := '';
Continue;
end;
end;
lTmpStr := lTmpStr + lCurChar;
end;
Inc(i);
end;
1: // Removing spaces
begin
if AStr[i] <> Str_Space then lState := 0
else Inc(i);
end;
2: // Adding a special group, such as "$2" or "?f3", which stop only at a space
begin
lCurChar := AStr[i];
if lCurChar = Str_Space then
begin
lState := 1;
AddToken(lTmpStr);
lTmpStr := '';
end
else
lTmpStr := lTmpStr + lCurChar;
Inc(i);
end;
end;
end;
// If there is a token still to be added, add it now
if (lState = 0) and (lTmpStr <> '') then AddToken(lTmpStr);
end;
procedure TSVGPathTokenizer.TokenizeFunctions(AStr: string);
const
Str_Space: Char = ' ';
Str_Start_Params: Char = '(';
Str_End_Params: Char = ')';
ListOfCommandLetters: set of Char = ['a'..'d', 'f'..'z', 'A'..'D', 'F'..'Z'];
var
i: Integer;
lTmpStr: string = '';
lState: Integer;
lFirstTmpStrChar, lCurChar: Char;
lToken: TSVGToken;
begin
lState := 0;
i := 1;
while i <= Length(AStr) do
begin
case lState of
0: // Adding to the tmp string
begin
lCurChar := AStr[i];
if lCurChar in [Str_Start_Params, Str_End_Params] then
begin
lState := 1;
// Add the token
lToken := TSVGToken.Create;
lToken.StrValue := lTmpStr;
Tokens.Add(lToken);
//
lTmpStr := '';
end
else
begin
lTmpStr := lTmpStr + lCurChar;
end;
Inc(i);
end;
1: // Removing spaces
begin
if AStr[i] <> Str_Space then lState := 0
else Inc(i);
end;
end;
end;
// If there is a token still to be added, add it now
if (lState = 0) and (lTmpStr <> '') then AddToken(lTmpStr);
end;
function TvODGVectorialReader.ReadSpaceSeparatedFloats(AInput: string;
AOtherSeparators: string): TDoubleArray;
var
lStrings: TStringList;
lInputStr: string;
lMatrixElements: array of Double;
i: Integer;
begin
lStrings := TStringList.Create;
try
lStrings.Delimiter := ' ';
// now other separator too
lInputStr := AInput;
for i := 1 to Length(AOtherSeparators) do
begin
lInputStr := StringReplace(lInputStr, AOtherSeparators[i], ' ', [rfReplaceAll]);
end;
//
lStrings.DelimitedText := lInputStr;
SetLength(lMatrixElements, lStrings.Count);
for i := 0 to lStrings.Count-1 do
begin
lMatrixElements[i] := StringWithUnitToFloat(lStrings.Strings[i]);
end;
Result := lMatrixElements;
finally
lStrings.Free;
end;
end;
function TvODGVectorialReader.ReadSpaceSeparatedStrings(AInput: string;
AOtherSeparators: string): TStringList;
var
i: Integer;
lInputStr: String;
begin
Result := TStringList.Create;
Result.Delimiter := ' ';
// now other separator too
lInputStr := AInput;
for i := 1 to Length(AOtherSeparators) do
begin
lInputStr := StringReplace(lInputStr, AOtherSeparators[i], ' ', [rfReplaceAll]);
end;
//
Result.DelimitedText := lInputStr;
end;
procedure TvODGVectorialReader.DeleteStyle(data, arg: pointer);
begin
TObject(data).Free;
end;
procedure TvODGVectorialReader.ApplyGraphicAttributeToPenAndBrush(ANodeName,
ANodeValue: string; var APen: TvPen; var ABrush: TvBrush);
var
lColor: TFPColor;
begin
case ANodeName of
// "none", "solid"
'draw:fill':
begin
case ANodeValue of
'none': ABrush.Style := bsClear;
'solid': ABrush.Style := bsSolid;
end;
end;
// "#ffffff"
'draw:fill-color':
begin
lColor := ReadSVGColor(ANodeValue);
ABrush.Color := lColor;
end;
// Values: "justify", "center", "left"
'draw:textarea-horizontal-align':
begin
end;
// Values: "middle"
'draw:textarea-vertical-align':
begin
end;
// true-false
'draw:auto-grow-height':
begin
end;
// true-false
'draw:auto-grow-width':
begin
end;
// "none", "dash"
'draw:stroke':
begin
case ANodeValue of
'none': APen.Style := psClear;
'dash': APen.Style := psDash;
end;
end;
// "Fine_20_Dashed_20__28_var_29_"
'draw:stroke-dash':
begin
end;
// "Arrow"
'draw:marker-start':
begin
end;
// "0.45cm"
'draw:marker-start-width':
begin
end;
// "Circle"
'draw:marker-end':
begin
end;
// "0.45cm"
'draw:marker-end-width':
begin
end;
// "Transparency_20_1"
'draw:opacity-name':
begin
end;
// "0.1cm"
'svg:stroke-width': APen.Width := Round(StringWithUnitToFloat(ANodeValue));
// "#000000"
'svg:stroke-color': APen.Color := ReadSVGColor(ANodeValue);
// "0cm"
'fo:min-height':
begin
end;
// "0cm"
'fo:min-width':
begin
end;
// "wrap"
'fo:wrap-option':
begin
end;
// "0.175cm"
'fo:padding-top':
begin
end;
// "0.175cm"
'fo:padding-bottom':
begin
end;
// "0.3cm"
'fo:padding-left':
begin
end;
// "0.3cm"
'fo:padding-right':
begin
end;
end;
end;
procedure TvODGVectorialReader.ApplyGraphicAttributeToEntity(ANodeName,
ANodeValue: string; ADest: TvEntityWithPen);
var
DummyBrush: TvBrush;
begin
if (ADest is TvEntityWithPenAndBrush) then
begin
ApplyGraphicAttributeToPenAndBrush(ANodeName, ANodeValue, ADest.Pen,
(ADest as TvEntityWithPenAndBrush).Brush);
end
else
ApplyGraphicAttributeToPenAndBrush(ANodeName, ANodeValue, ADest.Pen, DummyBrush);
end;
// Don't apply font properties here, because there is a separate method for this
procedure TvODGVectorialReader.ApplyStyleByNameToEntity(AStyleName: string;
ADest: TvEntityWithPen);
var
i: Integer;
lCurStyle: TODGStyle;
begin
for i := 0 to FStyles.Count-1 do
begin
lCurStyle := TODGStyle(FStyles.Items[i]);
if lCurStyle.Name = AStyleName then
begin
ADest.AssignPen(lCurStyle.Pen);
if ADest is TvEntityWithPenAndBrush then
TvEntityWithPenAndBrush(ADest).AssignBrush(@lCurStyle.Brush);
Exit;
end;
end;
end;
procedure TvODGVectorialReader.ApplyTextStyleByNameToEntity(AStyleName: string;
ADest: TvEntityWithPen);
var
i: Integer;
lCurStyle: TODGStyle;
begin
for i := 0 to FStyles.Count-1 do
begin
lCurStyle := TODGStyle(FStyles.Items[i]);
if lCurStyle.Name = AStyleName then
begin
if ADest is TvEntityWithPenBrushAndFont then
TvEntityWithPenBrushAndFont(ADest).AssignFont(lCurStyle.Font);
Exit;
end;
end;
end;
procedure TvODGVectorialReader.ApplyMasterPageToPage(AMasterPageName: string;
ADest: TvVectorialPage);
var
i: Integer;
lMasterPage: TODGMasterPage;
lMasterPageLayout: TODGPageLayout;
begin
// Find the Master Page
for i := 0 to FMasterPages.Count-1 do
begin
lMasterPage := TODGMasterPage(FMasterPages.Items[i]);
if lMasterPage.Name = AMasterPageName then Break
else lMasterPage := nil;
end;
if lMasterPage = nil then
raise Exception.Create(Format('[TvODGVectorialReader.ApplyMasterPageToPage] Master page not found: %s', [AMasterPageName]));
// Find the Master Page Properties
for i := 0 to FPageLayouts.Count-1 do
begin
lMasterPageLayout := TODGPageLayout(FPageLayouts.Items[i]);
if lMasterPageLayout.Name = lMasterPage.PageLayoutName then Break
else lMasterPageLayout := nil;
end;
if lMasterPageLayout = nil then
raise Exception.Create(Format('[TvODGVectorialReader.ApplyMasterPageToPage] Master page layout not found: %s', [lMasterPage.PageLayoutName]));
ADest.Width := lMasterPageLayout.PageWidth;
ADest.Height := lMasterPageLayout.PageHeight;
end;
{
<style:style style:name="gr2" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:fill="solid" draw:fill-color="#ffff99"
draw:textarea-horizontal-align="center" draw:textarea-vertical-align="middle"/>
</style:style>
}
procedure TvODGVectorialReader.ReadStyleStyleNode(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
lStyle: TvStyle;
i: Integer;
lGraphicPropertiesNode: TDOMNode;
lNodeName, lNodeValue: DOMString;
begin
lStyle := TODGStyle.Create();
// Read attributes of the main style tag
// <style:style style:name="gr4" style:family="graphic" style:parent-style-name="standard">;
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := LowerCase(ANode.Attributes.Item[i].NodeName);
lNodeValue := ANode.Attributes.Item[i].NodeValue;
case lNodeName of
'style:name': lStyle.Name := lNodeValue;
//'style:family'
'style:parent-style-name':
begin
lNodeValue := LowerCase(lNodeValue);
case lNodeValue of
// "standard"
'standard': Continue;
// "objectwithoutfill"
'objectwithoutfill':
begin
lStyle.Brush.Style := bsClear;
end;
end;
end;
end;
end;
// Read graphic properties
lGraphicPropertiesNode := ANode.FindNode('style:graphic-properties');
if lGraphicPropertiesNode <> nil then
begin
for i := 0 to lGraphicPropertiesNode.Attributes.Length - 1 do
begin
lNodeName := LowerCase(lGraphicPropertiesNode.Attributes.Item[i].NodeName);
lNodeValue := LowerCase(lGraphicPropertiesNode.Attributes.Item[i].NodeValue);
ApplyGraphicAttributeToPenAndBrush(lNodeName, lNodeValue, lStyle.Pen, lStyle.Brush);
end;
end;
FStyles.Add(lStyle);
end;
{
<draw:custom-shape draw:style-name="gr1" draw:text-style-name="P1" draw:layer="layout"
svg:width="5.2cm" svg:height="1.3cm" svg:x="2.6cm" svg:y="3cm">
<text:p text:style-name="P1">Rectangle</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle"
draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
For the drawing units see http://stackoverflow.com/questions/15335926/svg-viewbox-attribute
}
procedure TvODGVectorialReader.ReadEnhancedGeometryNodeToTPath(ANode: TDOMNode;
AData: TvVectorialPage; ADest: TPath; ADeltaX, ADeltaY: Double; var AInfo: TCustomShapeInfo);
var
i, Len: Integer;
lNodeName, lNodeValue, lAttrName, lAttrValue: string;
l10Strings: T10Strings;
lCurNode: TDOMNode;
begin
// Initial values to avoid invalid initial ones
if AInfo = nil then AInfo := TCustomShapeInfo.Create;
AInfo.ViewBox_Left := 0;
AInfo.ViewBox_Top := 0;
AInfo.ViewBox_Width := 10000;
AInfo.ViewBox_Height := 10000;
// First of all we need the viewBox, or else we can't map the coordinates
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := ANode.Attributes.Item[i].NodeName;
lNodeValue := ANode.Attributes.Item[i].NodeValue;
if (lNodeName = 'draw:viewBox') or (lNodeName = 'svg:viewBox') then
begin
// From OpenDocument 1.1 specs page 300
// The syntax for using this attribute is the same as the [SVG] syntax.
// The value of the attribute are four numbers separated by white spaces,
// which define the left, top, right, and bottom dimensions of the user
// coordinate system.
l10Strings := SeparateString(lNodeValue, ' ');
AInfo.ViewBox_Left := StringWithUnitToFloat(l10Strings[0]);
AInfo.ViewBox_Top := StringWithUnitToFloat(l10Strings[1]);
AInfo.ViewBox_Width := StringWithUnitToFloat(l10Strings[2]) - AInfo.ViewBox_Left;
AInfo.ViewBox_Height := StringWithUnitToFloat(l10Strings[3]) - AInfo.ViewBox_Top;
end;
end;
// Read child elements
lCurNode := ANode.FirstChild;
while lCurNode <> nil do
begin
lNodeName := lCurNode.NodeName;
case lNodeName of
// Read variables
// <draw:equation draw:name="f0" draw:formula="$0 " />
// <draw:equation draw:name="f1" draw:formula="10800-$0 " />
'draw:equation':
begin
for i := 0 to lCurNode.Attributes.Length - 1 do
begin
lAttrName := lCurNode.Attributes.Item[i].NodeName;
lAttrValue := lCurNode.Attributes.Item[i].NodeValue;
if (lAttrName = 'draw:name') then
begin
Len := Length(AInfo.Formulas);
SetLength(AInfo.Formulas, Len+1);
AInfo.Formulas[Len] := TvFormula.Create(nil);
AInfo.Formulas[Len].Name := lAttrValue;
end
else if (lAttrName = 'draw:formula') then
begin
Len := Length(AInfo.Formulas);
// Replace the formulas and variables
lAttrValue := StringReplace(lAttrValue, '$0', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '$1', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '$2', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '$3', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f0', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f1', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f2', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f3', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f4', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f5', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f6', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f7', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f8', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f9', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, '?f10', '0', [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, 'right', FloatToStr(AInfo.ViewBox_Left + AInfo.ViewBox_Width, FPointSeparator), [rfReplaceAll, rfIgnoreCase]);
lAttrValue := StringReplace(lAttrValue, 'bottom', FloatToStr(AInfo.ViewBox_Top + AInfo.ViewBox_Height, FPointSeparator), [rfReplaceAll, rfIgnoreCase]);
AInfo.Formulas[Len-1].AddItemsByConvertingInfixStringToRPN(lAttrValue);
end;
end;
end;
// <draw:handle draw:handle-position="$0 10800" draw:handle-range-x-minimum="0"
// draw:handle-range-x-maximum="10800" />
'draw:handle':
begin
end;
end;
lCurNode := lCurNode.NextSibling;
end;
// read the attributes
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := ANode.Attributes.Item[i].NodeName;
lNodeValue := ANode.Attributes.Item[i].NodeValue;
if lNodeName = 'draw:enhanced-path' then
begin
ConvertPathStringToTPath(lNodeValue, AData, ADest, ADeltaX, ADeltaY, AInfo);
end;
end;
end;
procedure TvODGVectorialReader.ConvertPathStringToTPath(AStr: string;
AData: TvVectorialPage; ADest: TPath; ADeltaX, ADeltaY: Double; AInfo: TCustomShapeInfo);
var
x1, y1, x2, y2: double;
t1, t2, lSrcX, lSrcY, lDestX, lDestY: Double;
j: Integer;
lTokenizer: TSVGPathTokenizer;
CurToken: TSVGToken;
begin
x1 := 0.0;
y1 := 0.0;
x2 := 0.0;
y2 := 0.0;
lTokenizer := TSVGPathTokenizer.Create;
try
lTokenizer.TokenizePathString(AStr);
j := 0;
while j < lTokenizer.Tokens.Count do
begin
CurToken := TSVGToken(lTokenizer.Tokens.Items[j]);
case CurToken.TokenType of
// moves
sttMoveTo, sttRelativeMoveTo:
begin
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+1]);
x1 := CurToken.Value + ADeltaX;
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+2]);
y1 := CurToken.Value + ADeltaY;
ConvertODGCoordinatesToFPVCoordinates(
AData, x1, y1, x1, y1);
ADest.AppendMoveToSegment(x1, y1);
Inc(j, 3);
end;
// Close Path
sttClosePath: Inc(j);
// lines
sttLineTo, sttRelativeLineTo,
sttHorzLineTo, sttRelativeHorzLineTo, sttVertLineTo, sttRelativeVertLineTo:
begin
Inc(j);
while TSVGToken(lTokenizer.Tokens.Items[j]).TokenType = sttFloatValue do
begin
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+1]);
x1 := CurToken.Value + ADeltaX;
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+2]);
y1 := CurToken.Value + ADeltaY;
ConvertODGCoordinatesToFPVCoordinates(
AData, x1, y1, x1, y1);
ADest.AppendLineToSegment(x1, y1);
Inc(j, 2);
if j >= lTokenizer.Tokens.Count then Break;
end;
end;
{ // cubic beziers
sttBezierTo, sttRelativeBezierTo,
// quadratic beziers
sttQuadraticBezierTo, sttRelativeQuadraticBezierTo,}
// Elliptic curves
//
// A -> arcto
// (x1 y1 x2 y2 x3 y3 x y) +
// (x1, y1) and (x2, y2) is defining the bounding box of a ellipse.
// A line is then drawn from the current point to the start angle of
// the arc that is specified by the radial vector of point (x3, y3)
// and then counter clockwise to the end-angle that is specified by point (x4, y4).
//
// T -> angle- ellipseto
// (x y w h t0 t1) +
// Draws a segment of an ellipse. The ellipse is specified by
// the center(x, y), the size(w, h) and the start-angle t0 and end-angle t1.
sttEllipticArcTo, sttRelativeEllipticArcTo, sttEllipticArcToWithAngle:
begin
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+1]);
x1 := CurToken.Value;
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+2]);
y1 := CurToken.Value;
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+3]);
x2 := ResolveEnhancedGeometryFormula(CurToken, AInfo) / 2;
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+4]);
y2 := ResolveEnhancedGeometryFormula(CurToken, AInfo) / 2;
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+5]);
t1 := CurToken.Value;
t1 := DegToRad(t1);
CurToken := TSVGToken(lTokenizer.Tokens.Items[j+6]);
t2 := CurToken.Value;
t2 := DegToRad(t2);
ConvertViewBoxCoordinatesToFPVCoordinates(AData, AInfo, x1, y1, x1, y1);
ConvertViewBoxDeltaToFPVDelta(AInfo, x2, y2, x2, y2);
// Parametrized Ellipse equation
lSrcX := x2 * Cos(t1) + x1;
lSrcY := y2 * Sin(t1) + y1;
lDestX := x2 * Cos(t2) + x1;
lDestY := y2 * Sin(t2) + y1;
// See http://www.w3.org/TR/SVG/paths.html#PathDataEllipticalArcCommands
ADest.AppendMoveToSegment(lSrcX, lSrcY);
ADest.AppendEllipticalArcWithCenter(x2, y2, 0, lDestX, lDestY, x1, y1, t2 > t1);
Inc(j, 7);
end;
{// numbers
sttFloatValue);}
else
Inc(j);
//raise Exception.Create('[TvODGVectorialReader.ConvertPathStringToTPath] Unexpected token type!');
end;
end;
finally
lTokenizer.Free;
end;
end;
function TvODGVectorialReader.ResolveEnhancedGeometryFormula(AInput: TSVGToken;
AInfo: TCustomShapeInfo): Double;
var
i: Integer;
lStr: string;
begin
Result := 0;
case AInput.TokenType of
sttFloatValue: Result := AInput.Value;
sttNamedEquation:
begin
for i := 0 to Length(AInfo.Formulas)-1 do
begin
lStr := '?' + AInfo.Formulas[i].Name;
if lStr = AInput.StrValue then
Result := AInfo.Formulas[i].CalculateRPNFormulaValue();
end;
end;
end;
end;
procedure TvODGVectorialReader.ReadElement(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
Str: String;
begin
Str := LowerCase(ANode.NodeName);
case Str of
'draw:custom-shape': ReadCustomShapeNode(ANode, AData, ADoc);
'draw:ellipse': ReadEllipseNode(ANode, AData, ADoc);
'draw:frame': ReadFrameNode(ANode, AData, ADoc);
'draw:line': ReadLineNode(ANode, AData, ADoc);
'draw:path': ReadPathNode(ANode, AData, ADoc);
end;
end;
{
<draw:custom-shape draw:style-name="gr1" draw:text-style-name="P1" draw:layer="layout"
svg:width="5.2cm" svg:height="1.3cm" svg:x="2.6cm" svg:y="3cm">
<text:p text:style-name="P1">Rectangle</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle"
draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
}
procedure TvODGVectorialReader.ReadCustomShapeNode(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
x1, y1, x2, y2, lWidth, lHeight: double;
i: Integer;
lNodeName, lNodeValue: string;
lCurNode: TDOMNode;
lSkewX, lSkewY, lRotate, lTranslateX, lTranslateY: Double;
// various possible custom shape types
lGroup: TvEntityWithSubEntities;
lPath: TPath;
lText: TvText;
lInfo: TCustomShapeInfo;
begin
x1 := 0.0;
y1 := 0.0;
x2 := 0.0;
y2 := 0.0;
lWidth := 0.0;
lHeight := 0.0;
lSkewX := 0.0;
lSkewY := 0.0;
lRotate := 0.0;
lTranslateX := 0.0;
lTranslateY := 0.0;
lGroup := TvEntityWithSubEntities.Create(AData);
lPath := TPath.Create(Adata);
lGroup.AddEntity(lPath);
// read the attributes
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := ANode.Attributes.Item[i].NodeName;
lNodeValue := ANode.Attributes.Item[i].NodeValue;
if lNodeName = 'svg:width' then
lWidth := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'svg:height' then
lHeight := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'draw:transform' then
GetDrawTransforms(ANode.Attributes.Item[i].NodeValue, lSkewX, lSkewY, lRotate, lTranslateX, lTranslateY)
else if lNodeName = 'svg:x' then
x1 := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'svg:y' then
y1 := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'draw:style-name' then
ApplyStyleByNameToEntity(lNodeValue, lPath)
else if lNodeName = 'draw:text-style-name' then
ApplyTextStyleByNameToEntity(lNodeValue, lPath);
// else if lNodeName = 'id' then
// lEllipse.Name := UTF16ToUTF8(ANode.Attributes.Item[i].NodeValue)
end;
ConvertMilimiterCoordinatesToFPVCoordinates(AData, x1, y1, x2, y2);
// Go through sub-nodes
lCurNode := ANode.FirstChild;
while lCurNode <> nil do
begin
lNodeName := lCurNode.NodeName;
case lNodeName of
'text:p':
begin
if lCurNode.FirstChild <> nil then
begin
lText := TvText.Create(AData);
lNodeValue := lCurNode.FirstChild.NodeValue;
lText.Value.Add(lNodeValue);
lGroup.AddEntity(lText);
end;
end;
'draw:enhanced-geometry':
begin
lInfo := TCustomShapeInfo.Create;
try
lInfo.Left := x1 + lTranslateX;
lInfo.Top := y1 + lTranslateY;
lInfo.Width := lWidth;
lInfo.Height := lHeight;
ReadEnhancedGeometryNodeToTPath(lCurNode, AData, lPath, x1, y1, lInfo);
finally
lInfo.Free;
end;
end;
end;
lCurNode := lCurNode.NextSibling;
end;
AData.AddEntity(lGroup);
end;
{
<draw:ellipse
draw:style-name="gr2" draw:text-style-name="P1" draw:layer="layout"
svg:width="11cm" svg:height="3cm" svg:x="5.5cm" svg:y="6.5cm">
<text:p/>
</draw:ellipse>
}
procedure TvODGVectorialReader.ReadEllipseNode(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
cx, cy, crx, cry: double;
lEllipse: TvEllipse;
i: Integer;
lNodeName: DOMString;
begin
cx := 0.0;
cy := 0.0;
crx := 0.0;
cry := 0.0;
lEllipse := TvEllipse.Create(AData);
// SVG entities start without any pen drawing, but with a black brush
lEllipse.Pen.Style := psClear;
lEllipse.Brush.Style := bsSolid;
lEllipse.Brush.Color := colBlack;
// read the attributes
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := ANode.Attributes.Item[i].NodeName;
if lNodeName = 'svg:x' then
cx := StringWithUnitToFloat(ANode.Attributes.Item[i].NodeValue)
else if lNodeName = 'svg:y' then
cy := StringWithUnitToFloat(ANode.Attributes.Item[i].NodeValue)
else if lNodeName = 'svg:width' then
crx := StringWithUnitToFloat(ANode.Attributes.Item[i].NodeValue) / 2
else if lNodeName = 'svg:height' then
cry := StringWithUnitToFloat(ANode.Attributes.Item[i].NodeValue) / 2
else if lNodeName = 'draw:style-name' then
ApplyStyleByNameToEntity(ANode.Attributes.Item[i].NodeValue, lEllipse)
else if lNodeName = 'draw:text-style-name' then
ApplyTextStyleByNameToEntity(ANode.Attributes.Item[i].NodeValue, lEllipse)
// else if lNodeName = 'id' then
// lEllipse.Name := UTF16ToUTF8(ANode.Attributes.Item[i].NodeValue)
else
ApplyGraphicAttributeToEntity(lNodeName, ANode.Attributes.Item[i].NodeValue, lEllipse);
end;
// The svg:x and svg:y coordinates are relative to the top-left in ODG,
// but in fpvectorial we use the center, so correct now
cx := cx + crx;
cy := cy + cry;
ConvertODGCoordinatesToFPVCoordinates(
AData, cx, cy, lEllipse.X, lEllipse.Y);
ConvertODGDeltaToFPVDelta(
AData, crx, cry, lEllipse.HorzHalfAxis, lEllipse.VertHalfAxis);
AData.AddEntity(lEllipse);
end;
{
<draw:frame draw:style-name="gr12" draw:text-style-name="P2" draw:layer="layout" svg:width="4.5cm" svg:height="1.25cm" svg:x="4cm" svg:y="20cm">
<draw:text-box>
<text:p text:style-name="P2">
<text:span text:style-name="T1">Kesäyö</text:span>
</text:p>
</draw:text-box>
</draw:frame>
}
procedure TvODGVectorialReader.ReadFrameNode(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
x1, y1, x2, y2, lWidth, lHeight: double;
i: Integer;
lNodeName, lNodeValue, lSubNodeName, lSubNodeValue: string;
lCurNode, lCurSubNode: TDOMNode;
lSkewX, lSkewY, lRotate, lTranslateX, lTranslateY: Double;
// various possible frame types contents
lGroup: TvEntityWithSubEntities;
lBorder: TvRectangle;
lRichText: TvRichText;
begin
x1 := 0.0;
y1 := 0.0;
x2 := 0.0;
y2 := 0.0;
lWidth := 0.0;
lHeight := 0.0;
lSkewX := 0.0;
lSkewY := 0.0;
lRotate := 0.0;
lTranslateX := 0.0;
lTranslateY := 0.0;
lGroup := TvEntityWithSubEntities.Create(AData);
lBorder := TvRectangle.Create(Adata);
lGroup.AddEntity(lBorder);
// read the attributes
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := ANode.Attributes.Item[i].NodeName;
lNodeValue := ANode.Attributes.Item[i].NodeValue;
if lNodeName = 'svg:width' then
lWidth := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'svg:height' then
lHeight := StringWithUnitToFloat(lNodeValue)
//else if lNodeName = 'draw:transform' then
//GetDrawTransforms(ANode.Attributes.Item[i].NodeValue, lSkewX, lSkewY, lRotate, lTranslateX, lTranslateY)
else if lNodeName = 'svg:x' then
x1 := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'svg:y' then
y1 := StringWithUnitToFloat(lNodeValue)
//else if lNodeName = 'draw:style-name' then
//ApplyStyleByNameToEntity(lNodeValue, lPath)
//else if lNodeName = 'draw:text-style-name' then
//ApplyTextStyleByNameToEntity(lNodeValue, lPath);
// else if lNodeName = 'id' then
// lEllipse.Name := UTF16ToUTF8(ANode.Attributes.Item[i].NodeValue)
end;
ConvertMilimiterCoordinatesToFPVCoordinates(AData, x1, y1, x2, y2);
lGroup.X := x2;
lGroup.Y := y2;
// Go through sub-nodes
lCurNode := ANode.FirstChild;
while lCurNode <> nil do
begin
lNodeName := lCurNode.NodeName;
case lNodeName of
'draw:text-box':
begin
lRichText := ReadTextPSequenceNode(lCurNode, AData, ADoc);
lRichText.X := x2;
lRichText.Y := y2;
lGroup.AddEntity(lRichText);
end;
end;
lCurNode := lCurNode.NextSibling;
end;
AData.AddEntity(lGroup);
end;
{
<draw:line draw:style-name="gr9" draw:text-style-name="P1" draw:layer="layout"
svg:x1="14cm" svg:y1="22.5cm" svg:x2="14cm" svg:y2="23.5cm"><text:p/></draw:line>
<draw:line draw:style-name="gr9" draw:text-style-name="P1" draw:layer="layout"
svg:x1="14cm" svg:y1="23.5cm" svg:x2="13.5cm" svg:y2="25.5cm"><text:p/></draw:line>
}
procedure TvODGVectorialReader.ReadLineNode(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
x1, y1, x2, y2: double;
lPath: TPath;
i: Integer;
lNodeName, lNodeValue: DOMString;
begin
x1 := 0.0;
y1 := 0.0;
x2 := 0.0;
y2 := 0.0;
lPath := TPath.Create(nil);
// read the attributes
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := ANode.Attributes.Item[i].NodeName;
lNodeValue := ANode.Attributes.Item[i].NodeValue;
if lNodeName = 'svg:x1' then
x1 := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'svg:y1' then
y1 := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'svg:x2' then
x2 := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'svg:y2' then
y2 := StringWithUnitToFloat(lNodeValue)
else if lNodeName = 'draw:style-name' then
ApplyStyleByNameToEntity(lNodeValue, lPath)
else if lNodeName = 'draw:text-style-name' then
ApplyTextStyleByNameToEntity(lNodeValue, lPath)
// else if lNodeName = 'id' then
// lEllipse.Name := UTF16ToUTF8(lNodeValue)
else
ApplyGraphicAttributeToEntity(lNodeName, lNodeValue, lPath);
end;
ConvertODGCoordinatesToFPVCoordinates(
AData, x1, y1, x1, y1);
ConvertODGCoordinatesToFPVCoordinates(
AData, x2, y2, x2, y2);
lPath.AppendMoveToSegment(x1, y1);
lPath.AppendLineToSegment(x2, y2);
AData.AddEntity(lPath);
end;
{
<draw:path draw:style-name="gr11" draw:text-style-name="P1" draw:layer="layout"
svg:width="9.429cm" svg:height="4.491cm"
draw:transform="skewX (-4.3967693286338E-017) rotate (0.417482757076965) translate (6.73314019682066cm 26.0928070675985cm)"
svg:viewBox="0 0 9430 4492" svg:d="m0 5c688-5 1345-23 2075 66 1374 167-412 989 814 1282 591 141 1129 504 1795 401 694-107 1142 607 1686 945 551 342 1077 719 1509 1195l501 355 549 243 501-238">
<text:p/></draw:path>
}
procedure TvODGVectorialReader.ReadPathNode(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
x1, y1, x2, y2, lWidth, lHeight: double;
lPath: TPath;
i: Integer;
lNodeName: DOMString;
lSkewX, lSkewY, lRotate, lTranslateX, lTranslateY: Double;
begin
x1 := 0.0;
y1 := 0.0;
x2 := 0.0;
y2 := 0.0;
lWidth := 0.0;
lHeight := 0.0;
lPath := TPath.Create(nil);
// read the attributes
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := ANode.Attributes.Item[i].NodeName;
if lNodeName = 'svg:width' then
lWidth := StringWithUnitToFloat(ANode.Attributes.Item[i].NodeValue)
else if lNodeName = 'svg:height' then
lHeight := StringWithUnitToFloat(ANode.Attributes.Item[i].NodeValue)
else if lNodeName = 'draw:transform' then
GetDrawTransforms(ANode.Attributes.Item[i].NodeValue, lSkewX, lSkewY, lRotate, lTranslateX, lTranslateY)
else if lNodeName = 'svg:d' then
ParsePathString(ANode.Attributes.Item[i].NodeValue, lPath)
else if lNodeName = 'draw:style-name' then
ApplyStyleByNameToEntity(ANode.Attributes.Item[i].NodeValue, lPath)
else if lNodeName = 'draw:text-style-name' then
ApplyTextStyleByNameToEntity(ANode.Attributes.Item[i].NodeValue, lPath)
// else if lNodeName = 'id' then
// lEllipse.Name := UTF16ToUTF8(ANode.Attributes.Item[i].NodeValue)
else
ApplyGraphicAttributeToEntity(lNodeName, ANode.Attributes.Item[i].NodeValue, lPath);
end;
ConvertODGCoordinatesToFPVCoordinates(
AData, x1, y1, x1, y1);
ConvertODGCoordinatesToFPVCoordinates(
AData, x2, y2, x2, y2);
ConvertODGDeltaToFPVDelta(
AData, lWidth, lHeight, lWidth, lHeight);
AData.AddEntity(lPath);
end;
function TvODGVectorialReader.ReadTextPSequenceNode(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument): TvRichText;
var
lNodeName, lNodeValue: string;
lCurNode: TDOMNode;
lParagraph: TvParagraph;
begin
Result := TvRichText.Create(AData);
lCurNode := ANode.FirstChild;
while lCurNode <> nil do
begin
lNodeName := lCurNode.NodeName;
lNodeValue := lCurNode.NodeValue;
case lNodeName of
'text:p':
begin
lParagraph := ReadTextPNode(lCurNode, AData, ADoc);
Result.AddEntity(lParagraph);
end;
end;
lCurNode := lCurNode.NextSibling;
end;
end;
{
Examples:
<text:p text:style-name="P2">
<text:span text:style-name="T1">Kesäyö</text:span>
</text:p>
<text:p>Jump opposite arm and leg up</text:p>
<text:p>
<text:span text:style-name="T1">Back muscle movement</text:span>
<text:span text:style-name="T2">opposite</text:span>
<text:span text:style-name="T3">arm</text:span>
and
<text:span text:style-name="T3">leg</text:span>
up
</text:p>
}
function TvODGVectorialReader.ReadTextPNode(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument): TvParagraph;
var
lNodeName, lNodeValue: string;
lCurNode: TDOMNode;
begin
Result := TvParagraph.Create(AData);
lCurNode := ANode.FirstChild;
while lCurNode <> nil do
begin
lNodeName := lCurNode.NodeName;
lNodeValue := lCurNode.NodeValue;
// Check if this is a text:span
if (lNodeValue = '') and (lCurNode.FirstChild <> nil) then
begin
lNodeValue := lCurNode.FirstChild.NodeValue;
end;
Result.AddText(lNodeValue);
lCurNode := lCurNode.NextSibling;
end;
end;
{
<office:master-styles>
<style:master-page style:name="Oletus" style:page-layout-name="PM0" draw:style-name="Mdp1"/>
</office:master-styles>
}
procedure TvODGVectorialReader.ReadStylesMasterPage(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
lMasterPage: TODGMasterPage;
i: Integer;
lNodeName, lNodeValue: string;
begin
lMasterPage := TODGMasterPage.Create;
// Read properties
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := LowerCase(ANode.Attributes.Item[i].NodeName);
lNodeValue := ANode.Attributes.Item[i].NodeValue;
case lNodeName of
'style:name': lMasterPage.Name := lNodeValue;
'style:page-layout-name': lMasterPage.PageLayoutName := lNodeValue;
'draw:style-name': lMasterPage.StyleName := lNodeValue;
end;
end;
FMasterPages.Add(lMasterPage);
end;
{
<style:page-layout style:name="PM0">
<style:page-layout-properties fo:margin-top="1cm" fo:margin-bottom="1cm"
fo:margin-left="1cm" fo:margin-right="1cm"
fo:page-width="21cm" fo:page-height="29.7cm"
style:print-orientation="portrait"/>
</style:page-layout>
}
procedure TvODGVectorialReader.ReadStylesPageLayout(ANode: TDOMNode;
AData: TvVectorialPage; ADoc: TvVectorialDocument);
var
lPageLayout: TODGPageLayout;
lPageLayoutPropertiesNode: TDOMNode;
i: Integer;
lNodeName, lNodeValue: string;
begin
lPageLayout := TODGPageLayout.Create;
// Read properties
for i := 0 to ANode.Attributes.Length - 1 do
begin
lNodeName := LowerCase(ANode.Attributes.Item[i].NodeName);
lNodeValue := ANode.Attributes.Item[i].NodeValue;
case lNodeName of
'style:name': lPageLayout.Name := lNodeValue;
end;
end;
// Read properties in the internal item
lPageLayoutPropertiesNode := ANode.FindNode('style:page-layout-properties');
if lPageLayoutPropertiesNode <> nil then
begin
for i := 0 to lPageLayoutPropertiesNode.Attributes.Length - 1 do
begin
lNodeName := LowerCase(lPageLayoutPropertiesNode.Attributes.Item[i].NodeName);
lNodeValue := lPageLayoutPropertiesNode.Attributes.Item[i].NodeValue;
case lNodeName of
'fo:margin-top': lPageLayout.MarginTop := StringWithUnitToFloat(lNodeValue);
'fo:margin-bottom':lPageLayout.MarginBottom := StringWithUnitToFloat(lNodeValue);
'fo:margin-left': lPageLayout.MarginLeft := StringWithUnitToFloat(lNodeValue);
'fo:margin-right':lPageLayout.MarginRight := StringWithUnitToFloat(lNodeValue);
'fo:page-width': lPageLayout.PageWidth := StringWithUnitToFloat(lNodeValue);
'fo:page-height': lPageLayout.PageHeight := StringWithUnitToFloat(lNodeValue);
end;
end;
end;
FPageLayouts.Add(lPageLayout);
end;
procedure TvODGVectorialReader.ParsePathString(AInputStr: string; ADest: TPath);
begin
end;
procedure TvODGVectorialReader.GetDrawTransforms(AInputStr: string; out ASkewX,
ASkewY, ARotate, ATranslateX, ATranslateY: Double);
var
// transform
MA, MB, MC, MD, ME, MF: Double;
lMTranslateX, lMTranslateY, lMScaleX, lMScaleY, lMSkewX, lMSkewY, lMRotate: Double;
lTokenizer: TSVGPathTokenizer;
i: Integer;
lFunctionName, lParamStr: string;
lMatrixElements: array of Double;
lMatrixStrElements: TStringList;
begin
ASkewX := 0.0;
ASkewY := 0.0;
ARotate := 0.0;
ATranslateX := 0.0;
ATranslateY := 0.0;
// Examples:
// transform="matrix(0.860815 0 -0 1.07602 339.302 489.171)"
// transform="scale(0.24) translate(0, 35)"
// transform="rotate(90)"
lTokenizer := TSVGPathTokenizer.Create;
try
lTokenizer.TokenizeFunctions(AInputStr);
i := 0;
while i < lTokenizer.Tokens.Count-1 do
begin
lFunctionName := Trim(lTokenizer.Tokens.Items[i].StrValue);
lParamStr := lTokenizer.Tokens.Items[i+1].StrValue;
//lMatrixElements := ReadSpaceSeparatedFloats(lParamStr, ',');
if lFunctionName = 'matrix' then
begin
{ReadSVGTransformationMatrix(lParamStr, MA, MB, MC, MD, ME, MF);
ConvertTransformationMatrixToOperations(MA, MB, MC, MD, ME, MF,
lMTranslateX, lMTranslateY, lMScaleX, lMScaleY, lMSkewX, lMSkewY, lMRotate);
ConvertSVGDeltaToFPVDelta(nil,
lMTranslateX, lMTranslateY,
lMTranslateX, lMTranslateY);
ADestEntity.Move(lMTranslateX, lMTranslateY);
ADestEntity.Scale(lMScaleX, lMScaleY); }
end
else if lFunctionName = 'scale' then
begin
;
end
else if lFunctionName = 'translate' then
begin
lMatrixStrElements := ReadSpaceSeparatedStrings(lParamStr, ',');
try
ATranslateX := StringWithUnitToFloat(lMatrixStrElements.Strings[0]);
ATranslateY := StringWithUnitToFloat(lMatrixStrElements.Strings[1]);
finally
lMatrixStrElements.Free;
end;
//ADestEntity.Move(lMatrixElements[0], lMatrixElements[1]);
end
else if lFunctionName = 'rotate' then
begin
//ADestEntity.Rotate(lMatrixElements[0], Make3DPoint(0, 0, 0));
end;
Inc(i, 2);
end;
finally
lTokenizer.Free;
end;
end;
function TvODGVectorialReader.ReadSVGColor(AValue: string): TFPColor;
var
lValue, lStr: string;
lStrings: TStringList;
begin
Result := colBlack;
lValue := Trim(LowerCase(AValue));
// Support for rgb(255,255,0)
if (Length(lValue) > 3) and (Copy(lValue, 0, 3) = 'rgb') then
begin
lStrings := TStringList.Create;
try
lStr := Copy(lValue, 5, Length(lValue)-5);
lStrings.Delimiter := ',';
lStrings.DelimitedText := lStr;
if lStrings.Count = 3 then
begin
Result.Red := StrToInt(lStrings.Strings[0]) * $101;
Result.Blue := StrToInt(lStrings.Strings[1]) * $101;
Result.Green := StrToInt(lStrings.Strings[2]) * $101;
end
else
raise Exception.Create(Format('[TvSVGVectorialReader.ReadSVGColor] An unexpected number of channels was found: %d', [lStrings.Count]));
finally
lStrings.Free;
end;
Exit;
end;
// Support for RGB hex
// ex: #0000ff
// Another wierd valid variant: #000
if (Length(lValue) > 1) and (lValue[1] = '#') then
begin
lStr := Copy(lValue, 2, 2);
Result.Red := StrToInt('$'+lStr)*$101;
lStr := Copy(lValue, 4, 2);
if lStr = '' then Result.Green := 0
else Result.Green := StrToInt('$'+lStr)*$101;
lStr := Copy(lValue, 6, 2);
if lStr = '' then Result.Blue := 0
else Result.Blue := StrToInt('$'+lStr)*$101;
Exit;
end;
// Support for named colors
// List here: http://www.december.com/html/spec/colorsvghex.html
case lValue of
'black': Result := colBlack;
'navy': Result.Blue := $8080;
'darkblue':Result.Blue := $8B8B;
'mediumblue':Result.Blue := $CDCD;
'blue': Result := colBlue;
'darkgreen':Result.Green := $6464;
'green': Result.Green := $8080;
'teal':
begin
Result.Green := $8080;
Result.Blue := $8080;
end;
'darkcyan':
begin
Result.Green := $8B8B;
Result.Blue := $8B8B;
end;
'deepskyblue':
begin
Result.Green := $BFBF;
Result.Blue := $FFFF;
end;
'darkturquoise':
begin
Result.Green := $CECE;
Result.Blue := $D1D1;
end;
'mediumspringgreen':
begin
Result.Green := $FAFA;
Result.Blue := $9A9A;
end;
'lime': Result := colGreen;
'springgreen':
begin
Result.Green := $FFFF;
Result.Blue := $7F7F;
end;
'cyan': Result := colCyan;
'aqua': Result := colCyan;
'midnightblue':
begin
Result.Red := $1919;
Result.Green := $1919;
Result.Blue := $7070;
end;
'dodgerblue':
begin
Result.Red := $1E1E;
Result.Green := $9090;
Result.Blue := $FFFF;
end;
'lightseagreen':
begin
Result.Red := $2020;
Result.Green := $B2B2;
Result.Blue := $AAAA;
end;
'forestgreen':
begin
Result.Red := $2222;
Result.Green := $8B8B;
Result.Blue := $2222;
end;
'seagreen':
begin
Result.Red := $2E2E;
Result.Green := $8B8B;
Result.Blue := $5757;
end;
'darkslategray', 'darkslategrey':
begin
Result.Red := $2F2F;
Result.Green := $4F4F;
Result.Blue := $4F4F;
end;
'limegreen':
begin
Result.Red := $3232;
Result.Green := $CDCD;
Result.Blue := $3232;
end;
'mediumseagreen':
begin
Result.Red := $3C3C;
Result.Green := $CBCB;
Result.Blue := $7171;
end;
'turquoise':
begin
Result.Red := $4040;
Result.Green := $E0E0;
Result.Blue := $D0D0;
end;
'royalblue':
begin
Result.Red := $4141;
Result.Green := $6969;
Result.Blue := $E1E1;
end;
'steelblue':
begin
Result.Red := $4646;
Result.Green := $8282;
Result.Blue := $B4B4;
end;
'darkslateblue':
begin
Result.Red := $4848;
Result.Green := $3D3D;
Result.Blue := $8B8B;
end;
'mediumturquoise':
begin
Result.Red := $4848;
Result.Green := $D1D1;
Result.Blue := $CCCC;
end;
{
indigo #4B0082
darkolivegreen #556B2F cadetblue #5F9EA0
cornflowerblue #6495ED
mediumaquamarine #66CDAA dimgrey #696969
dimgray #696969
slateblue #6A5ACD olivedrab #6B8E23
slategrey #708090
slategray #708090 lightslategray(Hex3) #778899
lightslategrey(Hex3) #778899
mediumslateblue #7B68EE lawngreen #7CFC00
chartreuse #7FFF00
}
'aquamarine':
begin
Result.Red := $7F7F;
Result.Green := $FFFF;
Result.Blue := $D4D4;
end;
'maroon': Result.Red := $8080;
'purple': Result := colPurple;
'olive': Result := colOlive;
'gray', 'grey': Result := colGray;
'skyblue':
begin
Result.Red := $8787;
Result.Green := $CECE;
Result.Blue := $EBEB;
end;
'lightskyblue':
begin
Result.Red := $8787;
Result.Green := $CECE;
Result.Blue := $FAFA;
end;
'blueviolet':
begin
Result.Red := $8A8A;
Result.Green := $2B2B;
Result.Blue := $E2E2;
end;
'darkred': Result.Red := $8B8B;
'darkmagenta':
begin
Result.Red := $8B8B;
Result.Blue := $8B8B;
end;
{
saddlebrown #8B4513
darkseagreen #8FBC8F lightgreen #90EE90
mediumpurple #9370DB
darkviolet #9400D3 palegreen #98FB98
darkorchid #9932CC
yellowgreen #9ACD32 sienna #A0522D
brown #A52A2A
darkgray #A9A9A9 darkgrey #A9A9A9
lightblue #ADD8E6
greenyellow #ADFF2F paleturquoise #AFEEEE
lightsteelblue #B0C4DE
powderblue #B0E0E6 firebrick #B22222
darkgoldenrod #B8860B
mediumorchid #BA55D3 rosybrown #BC8F8F
darkkhaki #BDB76B
}
'silver': Result := colSilver;
'mediumvioletred':
begin
Result.Red := $C7C7;
Result.Green := $1515;
Result.Blue := $8585;
end;
'indianred':
begin
Result.Red := $CDCD;
Result.Green := $5C5C;
Result.Blue := $5C5C;
end;
'peru':
begin
Result.Red := $CDCD;
Result.Green := $8585;
Result.Blue := $3F3F;
end;
'chocolate':
begin
Result.Red := $D2D2;
Result.Green := $6969;
Result.Blue := $1E1E;
end;
{
tan #D2B48C
lightgray #D3D3D3 lightgrey #D3D3D3
thistle #D8BFD8
orchid #DA70D6 goldenrod #DAA520
palevioletred #DB7093
crimson #DC143C gainsboro #DCDCDC
plum #DDA0DD
burlywood #DEB887 lightcyan #E0FFFF
lavender #E6E6FA
}
'darksalmon':
begin
Result.Red := $E9E9;
Result.Green := $9696;
Result.Blue := $7A7A;
end;
'violet':
begin
Result.Red := $EEEE;
Result.Green := $8282;
Result.Blue := $EEEE;
end;
'palegoldenrod':
begin
Result.Red := $EEEE;
Result.Green := $E8E8;
Result.Blue := $AAAA;
end;
'lightcoral':
begin
Result.Red := $F0F0;
Result.Green := $8080;
Result.Blue := $8080;
end;
'khaki':
begin
Result.Red := $F0F0;
Result.Green := $E6E6;
Result.Blue := $8C8C;
end;
'aliceblue':
begin
Result.Red := $F0F0;
Result.Green := $F8F8;
Result.Blue := $FFFF;
end;
'honeydew':
begin
Result.Red := $F0F0;
Result.Green := $FFFF;
Result.Blue := $F0F0;
end;
'azure':
begin
Result.Red := $F0F0;
Result.Green := $FFFF;
Result.Blue := $FFFF;
end;
'sandybrown':
begin
Result.Red := $F4F4;
Result.Green := $A4A4;
Result.Blue := $6060;
end;
{
wheat #F5DEB3 beige #F5F5DC
whitesmoke #F5F5F5
mintcream #F5FFFA ghostwhite #F8F8FF
salmon #FA8072
antiquewhite #FAEBD7 linen #FAF0E6
lightgoldenrodyellow #FAFAD2
oldlace #FDF5E6
}
'red': Result := colRed;
'fuchsia': Result := colFuchsia;
'magenta': Result := colMagenta;
{ deeppink #FF1493
orangered #FF4500
tomato #FF6347 hotpink #FF69B4
coral #FF7F50
darkorange #FF8C00 lightsalmon #FFA07A
orange #FFA500
lightpink #FFB6C1 pink #FFC0CB
gold #FFD700
peachpuff #FFDAB9 navajowhite #FFDEAD
moccasin #FFE4B5
bisque #FFE4C4 mistyrose #FFE4E1
blanchedalmond #FFEBCD
papayawhip #FFEFD5 lavenderblush #FFF0F5
seashell #FFF5EE
cornsilk #FFF8DC lemonchiffon #FFFACD
floralwhite #FFFAF0
}
'snow':
begin
Result.Red := $FFFF;
Result.Green := $FAFA;
Result.Blue := $FAFA;
end;
'yellow': Result := colYellow;
'lightyellow':
begin
Result.Red := $FFFF;
Result.Green := $FEFE;
end;
'ivory':
begin
Result.Red := $FFFF;
Result.Green := $FFFF;
Result.Blue := $F0F0;
end;
'white': Result := colWhite;
end;
end;
function TvODGVectorialReader.GetAttrValue(ANode : TDOMNode; AAttrName : string) : string;
var
i : integer;
Found : Boolean;
begin
Found:=false;
i:=0;
Result:='';
while not Found and (i<ANode.Attributes.Length) do begin
if ANode.Attributes.Item[i].NodeName=AAttrName then begin
Found:=true;
Result:=ANode.Attributes.Item[i].NodeValue;
end;
inc(i);
end;
end;
function TvODGVectorialReader.StringWithUnitToFloat(AStr: string): Double;
var
UnitStr, ValueStr: string;
Len: Integer;
begin
if AStr = '' then Exit(0.0);
// Check the unit
Len := Length(AStr);
UnitStr := Copy(AStr, Len-1, 2);
if UnitStr = 'mm' then
begin
ValueStr := Copy(AStr, 1, Len-2);
Result := StrToFloat(ValueStr, FPointSeparator);
end
else if UnitStr = 'cm' then
begin
ValueStr := Copy(AStr, 1, Len-2);
Result := StrToFloat(ValueStr, FPointSeparator) * 10;
end
else if UnitStr = 'px' then
begin
ValueStr := Copy(AStr, 1, Len-2);
Result := StrToInt(ValueStr);
end
else // If there is no unit, just use StrToFloat
begin
Result := StrToFloat(AStr, FPointSeparator);
end;
end;
procedure TvODGVectorialReader.ConvertODGCoordinatesToFPVCoordinates(
const AData: TvVectorialPage; const ASrcX, ASrcY: Double;
var ADestX,ADestY: Double);
begin
ADestX := ASrcX * FLOAT_MILIMETERS_PER_PIXEL;
ADestY := AData.Height - ASrcY * FLOAT_MILIMETERS_PER_PIXEL;
end;
procedure TvODGVectorialReader.ConvertODGDeltaToFPVDelta(
const AData: TvVectorialPage; const ASrcX, ASrcY: Double; var ADestX,
ADestY: Double);
begin
ADestX := ASrcX * FLOAT_MILIMETERS_PER_PIXEL;
ADestY := - ASrcY * FLOAT_MILIMETERS_PER_PIXEL;
end;
{
For the drawing units see http://stackoverflow.com/questions/15335926/svg-viewbox-attribute
We should use these formulas to obtain the X, Y position from something in the drawing:
Xreal = (Xenhanced-path - ViewBox_X0) * (draw:custom-shape_svg:width / svg:viewBox_Width) + svg:viewBox_Xo;
And the same for Y
For sizes just use without Xo
<draw:custom-shape draw:style-name="gr6" draw:text-style-name="P1" draw:layer="layout" svg:width="3.783cm" svg:height="3.602cm" draw:transform="skewX (-0.000872664625997166) rotate (-1.62385433605552) translate (19.087cm 20.266cm)">
<text:p />
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:glue-points="10800 0 3163 3163 0 10800 3163 18437 10800 21600 18437 18437 21600 10800 18437 3163" draw:text-areas="3163 3163 18437 18437" draw:type="ring" draw:modifiers="647.870425914817"
draw:enhanced-path="U 10800 10800 10800 10800 0 360 Z U 10800 10800 ?f1 ?f1 0 360 N">
<draw:equation draw:name="f0" draw:formula="$0 " />
<draw:equation draw:name="f1" draw:formula="10800-$0 " />
<draw:handle draw:handle-position="$0 10800" draw:handle-range-x-minimum="0" draw:handle-range-x-maximum="10800" />
</draw:enhanced-geometry>
</draw:custom-shape>
}
procedure TvODGVectorialReader.ConvertViewBoxCoordinatesToFPVCoordinates(
const AData: TvVectorialPage; const AInfo: TCustomShapeInfo;
const ASrcX, ASrcY: Double; var ADestX, ADestY: Double);
begin
ADestX := (ASrcX - AInfo.ViewBox_Left) * (AInfo.Width / AInfo.ViewBox_Width) + AInfo.Left;
ADestY := (ASrcY - AInfo.ViewBox_Top) * (AInfo.Height / AInfo.ViewBox_Height) + AInfo.Top;
ADestY := AData.Height - ADestY;
end;
procedure TvODGVectorialReader.ConvertViewBoxDeltaToFPVDelta(
const AInfo: TCustomShapeInfo; const ASrcX, ASrcY: Double; var ADestX,
ADestY: Double);
begin
ADestX := (ASrcX - AInfo.ViewBox_Left) * (AInfo.Width / AInfo.ViewBox_Width);
ADestY := (ASrcY - AInfo.ViewBox_Top) * (AInfo.Height / AInfo.ViewBox_Height);
end;
procedure TvODGVectorialReader.ConvertMilimiterCoordinatesToFPVCoordinates(
const AData: TvVectorialPage; const ASrcX, ASrcY: Double; var ADestX,
ADestY: Double);
begin
ADestX := ASrcX;
ADestY := AData.Height - ASrcY;
end;
constructor TvODGVectorialReader.Create;
begin
inherited Create;
FPointSeparator := DefaultFormatSettings;
FPointSeparator.DecimalSeparator := '.';
FPointSeparator.ThousandSeparator := '#';// disable the thousand separator
// FSVGPathTokenizer := TSVGPathTokenizer.Create;
FStyles := TFPList.Create;
FAutomaticStyles := TFPList.Create;
FPageLayouts := TFPList.Create;
FMasterPages := TFPList.Create;
end;
destructor TvODGVectorialReader.Destroy;
begin
FStyles.ForEachCall(@DeleteStyle, nil);
FStyles.Free;
FAutomaticStyles.ForEachCall(@DeleteStyle, nil);
FAutomaticStyles.Free;
FPageLayouts.ForEachCall(@DeleteStyle, nil);
FPageLayouts.Free;
FMasterPages.ForEachCall(@DeleteStyle, nil);
FMasterPages.Free;
// FSVGPathTokenizer.Free;
inherited Destroy;
end;
procedure TvODGVectorialReader.ReadFromStream(AStream: TStream;
AData: TvVectorialDocument);
var
Doc: TXMLDocument;
lCurNode: TDOMNode;
lPage: TvVectorialPage;
begin
{ try
// Read in xml file from the stream
ReadXMLFile(Doc, AStream);
// Read the properties of the <svg> tag
AData.Width := StringWithUnitToFloat(Doc.DocumentElement.GetAttribute('width'));
AData.Height := StringWithUnitToFloat(Doc.DocumentElement.GetAttribute('height'));
// Now process the elements
lCurNode := Doc.DocumentElement.FirstChild;
lPage := AData.AddPage();
lPage.Width := AData.Width;
lPage.Height := AData.Height;
while Assigned(lCurNode) do
begin
ReadEntityFromNode(lCurNode, lPage, AData);
lCurNode := lCurNode.NextSibling;
end;
finally
// finally, free the document
Doc.Free;
end;}
end;
procedure TvODGVectorialReader.ReadFromFile(AFileName: string; AData: TvVectorialDocument);
var
FilePath : string;
UnZip : TUnZipper;
FileList : TStringList;
Doc : TXMLDocument;
begin
//unzip content.xml into AFileName path
FilePath:=GetTempDir(false);
UnZip:=TUnZipper.Create;
UnZip.OutputPath:=FilePath;
FileList:=TStringList.Create;
FileList.Add('content.xml');
FileList.Add('styles.xml');
try
Unzip.UnZipFiles(AFileName,FileList);
finally
FreeAndNil(FileList);
FreeAndNil(UnZip);
end; //try
Doc:=nil;
try
// First read the master styles
ReadXMLFile(Doc,FilePath+'styles.xml');
DeleteFile(FilePath+'styles.xml');
ReadFromStylesXMLDocument(Doc, AData);
// Now process the contents
ReadXMLFile(Doc,FilePath+'content.xml');
DeleteFile(FilePath+'content.xml');
ReadFromStylesXMLDocument(Doc, AData); // The content.xml may also contain styles
ReadFromContentXMLDocument(Doc, AData);
finally
Doc.Free;
end;
end;
{
<draw:page draw:name="page1" draw:style-name="dp1" draw:master-page-name="Oletus">
}
procedure TvODGVectorialReader.ReadFromContentXMLDocument(
AXMLDocument: TXMLDocument; AData: TvVectorialDocument);
var
BodyNode, DrawingNode, PageNode, ElementNode: TDOMNode;
CurPage: TvVectorialPage;
i: Integer;
lNodeName, lNodeValue: String;
begin
BodyNode := AXMLDocument.DocumentElement.FindNode('office:body');
if not Assigned(BodyNode) then raise Exception.Create('[TvODGVectorialReader.ReadFromContentXMLDocument] node office:body not found');
DrawingNode := BodyNode.FindNode('office:drawing');
if not Assigned(DrawingNode) then raise Exception.Create('[TvODGVectorialReader.ReadFromContentXMLDocument] node office:drawing not found');
//process each page
PageNode := DrawingNode.FindNode('draw:page');
while Assigned(PageNode) do
begin
CurPage := aData.AddPage();
//CurPage..AddWorksheet(GetAttrValue(TableNode,'table:name'));
//process attributes of the page
for i := 0 to PageNode.Attributes.Length - 1 do
begin
lNodeName := LowerCase(PageNode.Attributes.Item[i].NodeName);
lNodeValue := PageNode.Attributes.Item[i].NodeValue;
case lNodeName of
'draw:master-page-name': ApplyMasterPageToPage(lNodeValue, CurPage);
end;
end;
//process each element inside the page
ElementNode := PageNode.FirstChild;
while Assigned(ElementNode) do
begin
ReadElement(ElementNode, CurPage, AData);
ElementNode:=ElementNode.NextSibling;
end; // while Assigned(ElementNode)
PageNode:=PageNode.NextSibling;
end; //while Assigned(PageNode)
end;
procedure TvODGVectorialReader.ReadFromStylesXMLDocument(
AXMLDocument: TXMLDocument; AData: TvVectorialDocument);
var
DocStylesNode, AutomaticStylesNode, MasterStylesNode, ElementNode: TDOMNode;
CurPage: TvVectorialPage;
lNodeName: String;
begin
DocStylesNode := AXMLDocument.DocumentElement;//.FindNode('office:document-styles');
if not Assigned(DocStylesNode) then raise Exception.Create('[TvODGVectorialReader.ReadFromStylesXMLDocument] node document-styles not found');
AutomaticStylesNode := DocStylesNode.FindNode('office:automatic-styles');
if Assigned(AutomaticStylesNode) then
begin
//process each master style
ElementNode := AutomaticStylesNode.FirstChild;
while Assigned(ElementNode) do
begin
lNodeName := LowerCase(ElementNode.NodeName);
case lNodeName of
'style:page-layout': ReadStylesPageLayout(ElementNode, CurPage, AData);
'style:style': ReadStyleStyleNode(ElementNode, CurPage, AData);
end;
ElementNode := ElementNode.NextSibling;
end; //while Assigned(MasterStyleNode)
end;
MasterStylesNode := DocStylesNode.FindNode('office:master-styles');
if Assigned(MasterStylesNode) then
begin
//process each master style
ElementNode := MasterStylesNode.FirstChild;
while Assigned(ElementNode) do
begin
lNodeName := LowerCase(ElementNode.NodeName);
case lNodeName of
'style:master-page': ReadStylesMasterPage(ElementNode, CurPage, AData);
end;
ElementNode := ElementNode.NextSibling;
end; //while Assigned(MasterStyleNode)
end;
end;
initialization
RegisterVectorialReader(TvODGVectorialReader, vfODG);
end.
|