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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sal/config.h>
#include <osl/diagnose.h>
#include <algorithm>
#include "wmfwr.hxx"
#include "emfwr.hxx"
#include <rtl/crc.h>
#include <rtl/tencinfo.h>
#include <tools/bigint.hxx>
#include <tools/helpers.hxx>
#include <tools/tenccvt.hxx>
#include <tools/fract.hxx>
#include <tools/stream.hxx>
#include <vcl/dibtools.hxx>
#include <vcl/metaact.hxx>
#include <vcl/FilterConfigItem.hxx>
#include <basegfx/polygon/b2dpolygon.hxx>
#include <basegfx/polygon/b2dpolypolygon.hxx>
#include <memory>
#include <vcl/fontcharmap.hxx>
// MS Windows defines
#define W_META_SETBKMODE 0x0102
#define W_META_SETROP2 0x0104
#define W_META_SETSTRETCHBLTMODE 0x0107
#define W_META_SETTEXTCOLOR 0x0209
#define W_META_SETWINDOWORG 0x020B
#define W_META_SETWINDOWEXT 0x020C
#define W_META_LINETO 0x0213
#define W_META_MOVETO 0x0214
#define W_META_INTERSECTCLIPRECT 0x0416
#define W_META_ARC 0x0817
#define W_META_ELLIPSE 0x0418
#define W_META_PIE 0x081A
#define W_META_RECTANGLE 0x041B
#define W_META_ROUNDRECT 0x061C
#define W_META_SAVEDC 0x001E
#define W_META_SETPIXEL 0x041F
#define W_META_TEXTOUT 0x0521
#define W_META_POLYGON 0x0324
#define W_META_POLYLINE 0x0325
#define W_META_ESCAPE 0x0626
#define W_META_RESTOREDC 0x0127
#define W_META_SELECTOBJECT 0x012D
#define W_META_SETTEXTALIGN 0x012E
#define W_META_CHORD 0x0830
#define W_META_EXTTEXTOUT 0x0a32
#define W_META_POLYPOLYGON 0x0538
#define W_META_STRETCHDIB 0x0f43
#define W_META_DELETEOBJECT 0x01f0
#define W_META_CREATEPENINDIRECT 0x02FA
#define W_META_CREATEFONTINDIRECT 0x02FB
#define W_META_CREATEBRUSHINDIRECT 0x02FC
#define W_TRANSPARENT 1
#define W_OPAQUE 2
#define W_R2_NOT 6
#define W_R2_XORPEN 7
#define W_R2_COPYPEN 13
#define W_TA_NOUPDATECP 0x0000
#define W_TA_LEFT 0x0000
#define W_TA_RIGHT 0x0002
#define W_TA_TOP 0x0000
#define W_TA_BOTTOM 0x0008
#define W_TA_BASELINE 0x0018
#define W_TA_RTLREADING 0x0100
#define W_SRCCOPY 0x00CC0020L
#define W_SRCPAINT 0x00EE0086L
#define W_SRCAND 0x008800C6L
#define W_SRCINVERT 0x00660046L
#define W_DSTINVERT 0x00550009L
#define W_PS_SOLID 0
#define W_PS_DASH 1
#define W_PS_DOT 2
#define W_PS_DASHDOT 3
#define W_PS_DASHDOTDOT 4
#define W_PS_NULL 5
#define W_LF_FACESIZE 32
#define W_ANSI_CHARSET 0
#define W_DEFAULT_PITCH 0x00
#define W_FIXED_PITCH 0x01
#define W_VARIABLE_PITCH 0x02
#define W_FF_DONTCARE 0x00
#define W_FF_ROMAN 0x10
#define W_FF_SWISS 0x20
#define W_FF_MODERN 0x30
#define W_FF_SCRIPT 0x40
#define W_FF_DECORATIVE 0x50
#define W_FW_DONTCARE 0
#define W_FW_THIN 100
#define W_FW_LIGHT 300
#define W_FW_NORMAL 400
#define W_FW_MEDIUM 500
#define W_FW_SEMIBOLD 600
#define W_FW_BOLD 700
#define W_FW_ULTRALIGHT 200
#define W_FW_ULTRABOLD 800
#define W_FW_BLACK 900
#define W_BS_SOLID 0
#define W_BS_HOLLOW 1
#define W_MFCOMMENT 15
#define PRIVATE_ESCAPE_UNICODE 2
WMFWriter::WMFWriter()
: bStatus(false)
, nLastPercent(0)
, pWMF(nullptr)
, pVirDev(nullptr)
, nMetafileHeaderPos(0)
, nMaxRecordSize(0)
, nActRecordPos(0)
, eSrcRasterOp(RasterOp::OverPaint)
, eSrcTextAlign(ALIGN_BASELINE)
, pAttrStack(nullptr)
, eSrcHorTextAlign(W_TA_LEFT)
, eDstROP2(RasterOp::OverPaint)
, eDstTextAlign(ALIGN_BASELINE)
, eDstHorTextAlign(W_TA_LEFT)
, bHandleAllocated{}
, nDstPenHandle(0)
, nDstFontHandle(0)
, nDstBrushHandle(0)
, nNumberOfActions(0)
, nNumberOfBitmaps(0)
, nWrittenActions(0)
, nWrittenBitmaps(0)
, nActBitmapPercent(0)
, bEmbedEMF(false)
{
}
void WMFWriter::MayCallback()
{
if ( xStatusIndicator.is() )
{
sal_uLong nPercent;
// we simply assume that 16386 actions match to a bitmap
// (normally a metafile either contains only actions or some bitmaps and
// almost no actions. In which case the ratio is less important)
nPercent=((nWrittenBitmaps<<14)+(nActBitmapPercent<<14)/100+nWrittenActions)
*100
/((nNumberOfBitmaps<<14)+nNumberOfActions);
if ( nPercent >= nLastPercent + 3 )
{
nLastPercent = nPercent;
if( nPercent <= 100 )
xStatusIndicator->setValue( nPercent );
}
}
}
void WMFWriter::CountActionsAndBitmaps( const GDIMetaFile & rMTF )
{
size_t nAction, nActionCount;
nActionCount = rMTF.GetActionSize();
for ( nAction=0; nAction < nActionCount; nAction++ )
{
MetaAction* pMA = rMTF.GetAction( nAction );
switch( pMA->GetType() )
{
case MetaActionType::BMP:
case MetaActionType::BMPSCALE:
case MetaActionType::BMPSCALEPART:
case MetaActionType::BMPEX:
case MetaActionType::BMPEXSCALE:
case MetaActionType::BMPEXSCALEPART:
nNumberOfBitmaps++;
break;
default: break;
}
nNumberOfActions++;
}
}
void WMFWriter::WritePointXY(const Point & rPoint)
{
Point aPt( OutputDevice::LogicToLogic(rPoint,aSrcMapMode,aTargetMapMode) );
pWMF->WriteInt16( aPt.X() ).WriteInt16( aPt.Y() );
}
void WMFWriter::WritePointYX(const Point & rPoint)
{
Point aPt( OutputDevice::LogicToLogic(rPoint,aSrcMapMode,aTargetMapMode) );
pWMF->WriteInt16( aPt.Y() ).WriteInt16( aPt.X() );
}
sal_Int32 WMFWriter::ScaleWidth( sal_Int32 nDX )
{
Size aSz( OutputDevice::LogicToLogic(Size(nDX,0),aSrcMapMode,aTargetMapMode) );
return aSz.Width();
}
void WMFWriter::WriteSize(const Size & rSize)
{
Size aSz( OutputDevice::LogicToLogic(rSize,aSrcMapMode,aTargetMapMode) );
pWMF->WriteInt16( aSz.Width() ).WriteInt16( aSz.Height() );
}
void WMFWriter::WriteHeightWidth(const Size & rSize)
{
Size aSz( OutputDevice::LogicToLogic(rSize,aSrcMapMode,aTargetMapMode) );
pWMF->WriteInt16( aSz.Height() ).WriteInt16( aSz.Width() );
}
void WMFWriter::WriteRectangle(const tools::Rectangle & rRect)
{
WritePointYX(Point(rRect.Right()+1,rRect.Bottom()+1));
WritePointYX(rRect.TopLeft());
}
void WMFWriter::WriteColor(const Color & rColor)
{
pWMF->WriteUChar( rColor.GetRed() ).WriteUChar( rColor.GetGreen() ).WriteUChar( rColor.GetBlue() ).WriteUChar( 0 );
}
void WMFWriter::WriteRecordHeader(sal_uInt32 nSizeWords, sal_uInt16 nType)
{
nActRecordPos=pWMF->Tell();
if (nSizeWords>nMaxRecordSize) nMaxRecordSize=nSizeWords;
pWMF->WriteUInt32( nSizeWords ).WriteUInt16( nType );
}
void WMFWriter::UpdateRecordHeader()
{
sal_uLong nPos;
sal_uInt32 nSize;
nPos=pWMF->Tell(); nSize=nPos-nActRecordPos;
if ((nSize & 1)!=0) {
pWMF->WriteUChar( 0 );
nPos++; nSize++;
}
nSize/=2;
if (nSize>nMaxRecordSize) nMaxRecordSize=nSize;
pWMF->Seek(nActRecordPos);
pWMF->WriteUInt32( nSize );
pWMF->Seek(nPos);
}
void WMFWriter::WMFRecord_Arc(const tools::Rectangle & rRect, const Point & rStartPt, const Point & rEndPt)
{
WriteRecordHeader(0x0000000b,W_META_ARC);
WritePointYX(rEndPt);
WritePointYX(rStartPt);
WriteRectangle(rRect);
}
void WMFWriter::WMFRecord_Chord(const tools::Rectangle & rRect, const Point & rStartPt, const Point & rEndPt)
{
WriteRecordHeader(0x0000000b,W_META_CHORD);
WritePointYX(rEndPt);
WritePointYX(rStartPt);
WriteRectangle(rRect);
}
void WMFWriter::WMFRecord_CreateBrushIndirect(const Color& rColor)
{
WriteRecordHeader(0x00000007,W_META_CREATEBRUSHINDIRECT);
if( rColor==COL_TRANSPARENT )
pWMF->WriteUInt16( W_BS_HOLLOW );
else
pWMF->WriteUInt16( W_BS_SOLID );
WriteColor( rColor );
pWMF->WriteUInt16( 0 );
}
void WMFWriter::WMFRecord_CreateFontIndirect(const vcl::Font & rFont)
{
sal_uInt16 nWeight,i;
sal_uInt8 nPitchFamily;
WriteRecordHeader(0x00000000,W_META_CREATEFONTINDIRECT);
WriteHeightWidth(Size(rFont.GetFontSize().Width(),-rFont.GetFontSize().Height()));
pWMF->WriteInt16( rFont.GetOrientation() ).WriteInt16( rFont.GetOrientation() );
switch (rFont.GetWeight()) {
case WEIGHT_THIN: nWeight=W_FW_THIN; break;
case WEIGHT_ULTRALIGHT: nWeight=W_FW_ULTRALIGHT; break;
case WEIGHT_LIGHT: nWeight=W_FW_LIGHT; break;
case WEIGHT_SEMILIGHT: nWeight=W_FW_LIGHT; break;
case WEIGHT_NORMAL: nWeight=W_FW_NORMAL; break;
case WEIGHT_MEDIUM: nWeight=W_FW_MEDIUM; break;
case WEIGHT_SEMIBOLD: nWeight=W_FW_SEMIBOLD; break;
case WEIGHT_BOLD: nWeight=W_FW_BOLD; break;
case WEIGHT_ULTRABOLD: nWeight=W_FW_ULTRABOLD; break;
case WEIGHT_BLACK: nWeight=W_FW_BLACK; break;
default: nWeight=W_FW_DONTCARE;
}
pWMF->WriteUInt16( nWeight );
if (rFont.GetItalic()==ITALIC_NONE) pWMF->WriteUChar( 0 ); else pWMF->WriteUChar( 1 );
if (rFont.GetUnderline()==LINESTYLE_NONE) pWMF->WriteUChar( 0 ); else pWMF->WriteUChar( 1 );
if (rFont.GetStrikeout()==STRIKEOUT_NONE) pWMF->WriteUChar( 0 ); else pWMF->WriteUChar( 1 );
rtl_TextEncoding eFontNameEncoding = rFont.GetCharSet();
sal_uInt8 nCharSet = rtl_getBestWindowsCharsetFromTextEncoding( eFontNameEncoding );
if ( eFontNameEncoding == RTL_TEXTENCODING_SYMBOL )
eFontNameEncoding = RTL_TEXTENCODING_MS_1252;
if ( nCharSet == 1 )
nCharSet = W_ANSI_CHARSET;
pWMF->WriteUChar( nCharSet );
pWMF->WriteUChar( 0 ).WriteUChar( 0 ).WriteUChar( 0 );
switch (rFont.GetPitch()) {
case PITCH_FIXED: nPitchFamily=W_FIXED_PITCH; break;
case PITCH_VARIABLE: nPitchFamily=W_VARIABLE_PITCH; break;
default: nPitchFamily=W_DEFAULT_PITCH;
}
switch (rFont.GetFamilyType()) {
case FAMILY_DECORATIVE: nPitchFamily|=W_FF_DECORATIVE; break;
case FAMILY_MODERN: nPitchFamily|=W_FF_MODERN; break;
case FAMILY_ROMAN: nPitchFamily|=W_FF_ROMAN; break;
case FAMILY_SCRIPT: nPitchFamily|=W_FF_SCRIPT; break;
case FAMILY_SWISS: nPitchFamily|=W_FF_SWISS; break;
default: nPitchFamily|=W_FF_DONTCARE;
}
pWMF->WriteUChar( nPitchFamily );
OString aFontName(OUStringToOString(rFont.GetFamilyName(), eFontNameEncoding));
for ( i = 0; i < W_LF_FACESIZE; i++ )
{
char nChar = ( i < aFontName.getLength() ) ? aFontName[i] : 0;
pWMF->WriteChar( nChar );
}
UpdateRecordHeader();
}
void WMFWriter::WMFRecord_CreatePenIndirect(const Color& rColor, const LineInfo& rLineInfo )
{
WriteRecordHeader(0x00000008,W_META_CREATEPENINDIRECT);
sal_uInt16 nStyle = rColor == COL_TRANSPARENT ? W_PS_NULL : W_PS_SOLID;
switch( rLineInfo.GetStyle() )
{
case LineStyle::Dash :
{
if ( rLineInfo.GetDotCount() )
{
if ( !rLineInfo.GetDashCount() )
nStyle = W_PS_DOT;
else
{
if ( rLineInfo.GetDotCount() == 1 )
nStyle = W_PS_DASHDOT;
else
nStyle = W_PS_DASHDOTDOT;
}
}
else
nStyle = W_PS_DASH;
}
break;
case LineStyle::NONE :
nStyle = W_PS_NULL;
break;
default:
break;
}
pWMF->WriteUInt16( nStyle );
WriteSize( Size( rLineInfo.GetWidth(), 0 ) );
WriteColor( rColor );
}
void WMFWriter::WMFRecord_DeleteObject(sal_uInt16 nObjectHandle)
{
WriteRecordHeader(0x00000004,W_META_DELETEOBJECT);
pWMF->WriteUInt16( nObjectHandle );
}
void WMFWriter::WMFRecord_Ellipse(const tools::Rectangle & rRect)
{
WriteRecordHeader(0x00000007,W_META_ELLIPSE);
WriteRectangle(rRect);
}
void WMFWriter::WMFRecord_Escape( sal_uInt32 nEsc, sal_uInt32 nLen, const sal_Int8* pData )
{
#ifdef OSL_BIGENDIAN
sal_uInt32 nTmp = OSL_SWAPDWORD( nEsc );
sal_uInt32 nCheckSum = rtl_crc32( 0, &nTmp, 4 );
#else
sal_uInt32 nCheckSum = rtl_crc32( 0, &nEsc, 4 );
#endif
if ( nLen )
nCheckSum = rtl_crc32( nCheckSum, pData, nLen );
WriteRecordHeader( 3 + 9 + ( ( nLen + 1 ) >> 1 ), W_META_ESCAPE );
pWMF->WriteUInt16( W_MFCOMMENT )
.WriteUInt16( nLen + 14 ) // we will always have a fourteen byte escape header:
.WriteUInt16( 0x4f4f ) // OO
.WriteUInt32( 0xa2c2a ) // evil magic number
.WriteUInt32( nCheckSum ) // crc32 checksum about nEsc & pData
.WriteUInt32( nEsc ); // escape number
pWMF->WriteBytes( pData, nLen );
if ( nLen & 1 )
pWMF->WriteUChar( 0 ); // pad byte
}
/* if return value is true, then a complete unicode string and also a polygon replacement has been written,
so there is no more action necessary
*/
bool WMFWriter::WMFRecord_Escape_Unicode( const Point& rPoint, const OUString& rUniStr, const long* pDXAry )
{
bool bEscapeUsed = false;
sal_uInt32 i, nStringLen = rUniStr.getLength();
if ( nStringLen )
{
// first we will check if a comment is necessary
if ( aSrcFont.GetCharSet() != RTL_TEXTENCODING_SYMBOL ) // symbol is always byte character, so there is no unicode loss
{
const sal_Unicode* pBuf = rUniStr.getStr();
const rtl_TextEncoding aTextEncodingOrg = aSrcFont.GetCharSet();
OString aByteStr(OUStringToOString(rUniStr, aTextEncodingOrg));
OUString aUniStr2(OStringToOUString(aByteStr, aTextEncodingOrg));
const sal_Unicode* pConversion = aUniStr2.getStr(); // this is the unicode array after bytestring <-> unistring conversion
for ( i = 0; i < nStringLen; i++ )
{
if ( *pBuf++ != *pConversion++ )
break;
}
if ( i != nStringLen ) // after conversion the characters are not original,
{ // try again, with determining a better charset from unicode char
pBuf = rUniStr.getStr();
const sal_Unicode* pCheckChar = pBuf;
rtl_TextEncoding aTextEncoding = getBestMSEncodingByChar(*pCheckChar); // try the first character
if (aTextEncoding == RTL_TEXTENCODING_DONTKNOW) {
aTextEncoding = aTextEncodingOrg;
}
for ( i = 1; i < nStringLen; i++)
{
if (aTextEncoding != aTextEncodingOrg) // found something
break;
pCheckChar++;
aTextEncoding = getBestMSEncodingByChar(*pCheckChar); // try the next character
if (aTextEncoding == RTL_TEXTENCODING_DONTKNOW) {
aTextEncoding = aTextEncodingOrg;
}
}
aByteStr = OUStringToOString(rUniStr, aTextEncoding);
aUniStr2 = OStringToOUString(aByteStr, aTextEncoding);
pConversion = aUniStr2.getStr(); // this is the unicode array after bytestring <-> unistring conversion
for ( i = 0; i < nStringLen; i++ )
{
if ( *pBuf++ != *pConversion++ )
break;
}
if (i == nStringLen)
{
aSrcFont.SetCharSet (aTextEncoding);
SetAllAttr();
}
}
if ( ( i != nStringLen ) || IsStarSymbol( aSrcFont.GetFamilyName() ) ) // after conversion the characters are not original, so we
{ // will store the unicode string and a polypoly replacement
Color aOldFillColor( aSrcFillColor );
Color aOldLineColor( aSrcLineColor );
aSrcLineInfo = LineInfo();
aSrcFillColor = aSrcTextColor;
aSrcLineColor = COL_TRANSPARENT;
SetLineAndFillAttr();
pVirDev->SetFont( aSrcFont );
std::vector<tools::PolyPolygon> aPolyPolyVec;
if ( pVirDev->GetTextOutlines( aPolyPolyVec, rUniStr ) )
{
sal_uInt32 nDXCount = pDXAry ? nStringLen : 0;
sal_uInt32 nSkipActions = aPolyPolyVec.size();
sal_Int32 nStrmLen = 8 +
+ sizeof( nStringLen ) + ( nStringLen * 2 )
+ sizeof( nDXCount ) + ( nDXCount * 4 )
+ sizeof( nSkipActions );
SvMemoryStream aMemoryStream( nStrmLen );
Point aPt( OutputDevice::LogicToLogic( rPoint, aSrcMapMode, aTargetMapMode ) );
aMemoryStream.WriteInt32( aPt.X() )
.WriteInt32( aPt.Y() )
.WriteUInt32( nStringLen );
for ( i = 0; i < nStringLen; i++ )
aMemoryStream.WriteUInt16( rUniStr[ i ] );
aMemoryStream.WriteUInt32( nDXCount );
for ( i = 0; i < nDXCount; i++ )
aMemoryStream.WriteInt32( pDXAry[ i ] );
aMemoryStream.WriteUInt32( nSkipActions );
WMFRecord_Escape( PRIVATE_ESCAPE_UNICODE, nStrmLen, static_cast<const sal_Int8*>(aMemoryStream.GetData()) );
for ( const auto& rPolyPoly : aPolyPolyVec )
{
tools::PolyPolygon aPolyPoly( rPolyPoly );
aPolyPoly.Move( rPoint.X(), rPoint.Y() );
WMFRecord_PolyPolygon( aPolyPoly );
}
aSrcFillColor = aOldFillColor;
aSrcLineColor = aOldLineColor;
bEscapeUsed = true;
}
}
}
}
return bEscapeUsed;
}
void WMFWriter::WMFRecord_ExtTextOut( const Point& rPoint,
const OUString& rString,
const long* pDXAry )
{
sal_Int32 nOriginalTextLen = rString.getLength();
if ( (nOriginalTextLen <= 1) || (pDXAry == nullptr) )
{
WMFRecord_TextOut(rPoint, rString);
return;
}
rtl_TextEncoding eChrSet = aSrcFont.GetCharSet();
OString aByteString(OUStringToOString(rString, eChrSet));
TrueExtTextOut(rPoint, rString, aByteString, pDXAry);
}
void WMFWriter::TrueExtTextOut( const Point& rPoint, const OUString& rString,
const OString& rByteString, const long* pDXAry )
{
WriteRecordHeader( 0, W_META_EXTTEXTOUT );
WritePointYX( rPoint );
sal_uInt16 nNewTextLen = static_cast<sal_uInt16>(rByteString.getLength());
pWMF->WriteUInt16( nNewTextLen ).WriteUInt16( 0 );
write_uInt8s_FromOString(*pWMF, rByteString, nNewTextLen);
if ( nNewTextLen & 1 )
pWMF->WriteUChar( 0 );
sal_Int32 nOriginalTextLen = rString.getLength();
std::unique_ptr<sal_Int16[]> pConvertedDXAry(new sal_Int16[ nOriginalTextLen ]);
sal_Int32 j = 0;
pConvertedDXAry[ j++ ] = static_cast<sal_Int16>(ScaleWidth( pDXAry[ 0 ] ));
for (sal_Int32 i = 1; i < ( nOriginalTextLen - 1 ); ++i)
pConvertedDXAry[ j++ ] = static_cast<sal_Int16>(ScaleWidth( pDXAry[ i ] - pDXAry[ i - 1 ] ));
pConvertedDXAry[ j ] = static_cast<sal_Int16>(ScaleWidth( pDXAry[ nOriginalTextLen - 2 ] / ( nOriginalTextLen - 1 ) ));
for (sal_Int32 i = 0; i < nOriginalTextLen; ++i)
{
sal_Int16 nDx = pConvertedDXAry[ i ];
pWMF->WriteInt16( nDx );
if ( nOriginalTextLen < nNewTextLen )
{
sal_Unicode nUniChar = rString[i];
OString aTemp(&nUniChar, 1, aSrcFont.GetCharSet());
j = aTemp.getLength();
while ( --j > 0 )
pWMF->WriteUInt16( 0 );
}
}
pConvertedDXAry.reset();
UpdateRecordHeader();
}
void WMFWriter::WMFRecord_LineTo(const Point & rPoint)
{
WriteRecordHeader(0x00000005,W_META_LINETO);
WritePointYX(rPoint);
}
void WMFWriter::WMFRecord_MoveTo(const Point & rPoint)
{
WriteRecordHeader(0x00000005,W_META_MOVETO);
WritePointYX(rPoint);
}
void WMFWriter::WMFRecord_Pie(const tools::Rectangle & rRect, const Point & rStartPt, const Point & rEndPt)
{
WriteRecordHeader(0x0000000b,W_META_PIE);
WritePointYX(rEndPt);
WritePointYX(rStartPt);
WriteRectangle(rRect);
}
void WMFWriter::WMFRecord_Polygon(const tools::Polygon & rPoly)
{
tools::Polygon aSimplePoly;
if ( rPoly.HasFlags() )
rPoly.AdaptiveSubdivide( aSimplePoly );
else
aSimplePoly = rPoly;
const sal_uInt16 nSize = aSimplePoly.GetSize();
WriteRecordHeader(static_cast<sal_uInt32>(nSize)*2+4,W_META_POLYGON);
pWMF->WriteUInt16( nSize );
for (sal_uInt16 i=0; i<nSize; ++i)
WritePointXY(aSimplePoly.GetPoint(i));
}
void WMFWriter::WMFRecord_PolyLine(const tools::Polygon & rPoly)
{
tools::Polygon aSimplePoly;
if ( rPoly.HasFlags() )
rPoly.AdaptiveSubdivide( aSimplePoly );
else
aSimplePoly = rPoly;
const sal_uInt16 nSize = aSimplePoly.GetSize();
WriteRecordHeader(static_cast<sal_uInt32>(nSize)*2+4,W_META_POLYLINE);
pWMF->WriteUInt16( nSize );
for (sal_uInt16 i=0; i<nSize; ++i)
WritePointXY(aSimplePoly.GetPoint(i));
}
void WMFWriter::WMFRecord_PolyPolygon(const tools::PolyPolygon & rPolyPoly)
{
const tools::Polygon * pPoly;
sal_uInt16 nCount,nSize,i,j;
nCount=rPolyPoly.Count();
tools::PolyPolygon aSimplePolyPoly( rPolyPoly );
for ( i = 0; i < nCount; i++ )
{
if ( aSimplePolyPoly[ i ].HasFlags() )
{
tools::Polygon aSimplePoly;
aSimplePolyPoly[ i ].AdaptiveSubdivide( aSimplePoly );
aSimplePolyPoly[ i ] = aSimplePoly;
}
}
WriteRecordHeader(0,W_META_POLYPOLYGON);
pWMF->WriteUInt16( nCount );
for (i=0; i<nCount; i++) pWMF->WriteUInt16( aSimplePolyPoly.GetObject(i).GetSize() );
for (i=0; i<nCount; i++) {
pPoly=&(aSimplePolyPoly.GetObject(i));
nSize=pPoly->GetSize();
for (j=0; j<nSize; j++) WritePointXY(pPoly->GetPoint(j));
}
UpdateRecordHeader();
}
void WMFWriter::WMFRecord_Rectangle(const tools::Rectangle & rRect)
{
WriteRecordHeader( 0x00000007,W_META_RECTANGLE );
WriteRectangle( rRect );
}
void WMFWriter::WMFRecord_RestoreDC()
{
WriteRecordHeader(0x00000004,W_META_RESTOREDC);
pWMF->WriteInt16( -1 );
}
void WMFWriter::WMFRecord_RoundRect(const tools::Rectangle & rRect, long nHorzRound, long nVertRound)
{
WriteRecordHeader(0x00000009,W_META_ROUNDRECT);
WriteHeightWidth(Size(nHorzRound,nVertRound));
WriteRectangle(rRect);
}
void WMFWriter::WMFRecord_SaveDC()
{
WriteRecordHeader(0x00000003,W_META_SAVEDC);
}
void WMFWriter::WMFRecord_SelectObject(sal_uInt16 nObjectHandle)
{
WriteRecordHeader(0x00000004,W_META_SELECTOBJECT);
pWMF->WriteUInt16( nObjectHandle );
}
void WMFWriter::WMFRecord_SetBkMode(bool bTransparent)
{
WriteRecordHeader(0x00000004,W_META_SETBKMODE);
if (bTransparent) pWMF->WriteUInt16( W_TRANSPARENT );
else pWMF->WriteUInt16( W_OPAQUE );
}
void WMFWriter::WMFRecord_SetStretchBltMode()
{
WriteRecordHeader( 0x00000004, W_META_SETSTRETCHBLTMODE );
pWMF->WriteUInt16( 3 ); // STRETCH_DELETESCANS
}
void WMFWriter::WMFRecord_SetPixel(const Point & rPoint, const Color & rColor)
{
WriteRecordHeader(0x00000007,W_META_SETPIXEL);
WriteColor(rColor);
WritePointYX(rPoint);
}
void WMFWriter::WMFRecord_SetROP2(RasterOp eROP)
{
sal_uInt16 nROP2;
switch (eROP) {
case RasterOp::Invert: nROP2=W_R2_NOT; break;
case RasterOp::Xor: nROP2=W_R2_XORPEN; break;
default: nROP2=W_R2_COPYPEN;
}
WriteRecordHeader(0x00000004,W_META_SETROP2);
pWMF->WriteUInt16( nROP2 );
}
void WMFWriter::WMFRecord_SetTextAlign(FontAlign eFontAlign, sal_uInt16 eHorTextAlign)
{
sal_uInt16 nAlign;
switch (eFontAlign) {
case ALIGN_TOP: nAlign=W_TA_TOP; break;
case ALIGN_BOTTOM: nAlign=W_TA_BOTTOM; break;
default: nAlign=W_TA_BASELINE;
}
nAlign|=eHorTextAlign;
nAlign|=W_TA_NOUPDATECP;
WriteRecordHeader(0x00000004,W_META_SETTEXTALIGN);
pWMF->WriteUInt16( nAlign );
}
void WMFWriter::WMFRecord_SetTextColor(const Color & rColor)
{
WriteRecordHeader(0x00000005,W_META_SETTEXTCOLOR);
WriteColor(rColor);
}
void WMFWriter::WMFRecord_SetWindowExt(const Size & rSize)
{
WriteRecordHeader(0x00000005,W_META_SETWINDOWEXT);
WriteHeightWidth(rSize);
}
void WMFWriter::WMFRecord_SetWindowOrg(const Point & rPoint)
{
WriteRecordHeader(0x00000005,W_META_SETWINDOWORG);
WritePointYX(rPoint);
}
void WMFWriter::WMFRecord_StretchDIB( const Point & rPoint, const Size & rSize,
const Bitmap & rBitmap, sal_uInt32 nROP )
{
sal_uLong nPosAnf,nPosEnd;
nActBitmapPercent=50;
MayCallback();
WriteRecordHeader(0x00000000,W_META_STRETCHDIB);
// The sequence in the metafile should be:
// some parameters (length 22), then the bitmap without FILEHEADER.
// As *pWMF << rBitmap generates a FILEHEADER of size 14,
// we first write the bitmap at the right position
// and overwrite later the FILEHEADER with the parameters.
nPosAnf=pWMF->Tell(); // remember position, where parameters should be stored
pWMF->WriteInt32( 0 ).WriteInt32( 0 ); // replenish 8 bytes (these 8 bytes +
// 14 bytes superfluous FILEHEADER
// = 22 bytes parameter)
// write bitmap
WriteDIB(rBitmap, *pWMF, false, true);
// write the parameters:
nPosEnd=pWMF->Tell();
pWMF->Seek(nPosAnf);
// determine raster-op, if nothing was passed
if( !nROP )
{
switch( eSrcRasterOp )
{
case RasterOp::Invert: nROP = W_DSTINVERT; break;
case RasterOp::Xor: nROP = W_SRCINVERT; break;
default: nROP = W_SRCCOPY;
}
}
pWMF->WriteUInt32( nROP ).
WriteInt16( 0 ).
WriteInt16( rBitmap.GetSizePixel().Height() ).
WriteInt16( rBitmap.GetSizePixel().Width() ).
WriteInt16( 0 ).
WriteInt16( 0 );
WriteHeightWidth(rSize);
WritePointYX(rPoint);
pWMF->Seek(nPosEnd);
UpdateRecordHeader();
nWrittenBitmaps++;
nActBitmapPercent=0;
}
void WMFWriter::WMFRecord_TextOut(const Point & rPoint, const OUString & rStr)
{
rtl_TextEncoding eChrSet = aSrcFont.GetCharSet();
OString aString(OUStringToOString(rStr, eChrSet));
TrueTextOut(rPoint, aString);
}
void WMFWriter::TrueTextOut(const Point & rPoint, const OString& rString)
{
WriteRecordHeader(0,W_META_TEXTOUT);
write_uInt16_lenPrefixed_uInt8s_FromOString(*pWMF, rString);
sal_Int32 nLen = rString.getLength();
if ((nLen&1)!=0) pWMF->WriteUChar( 0 );
WritePointYX(rPoint);
UpdateRecordHeader();
}
void WMFWriter::WMFRecord_IntersectClipRect( const tools::Rectangle& rRect )
{
WriteRecordHeader( 0x00000007, W_META_INTERSECTCLIPRECT );
WriteRectangle(rRect);
}
sal_uInt16 WMFWriter::AllocHandle()
{
sal_uInt16 i;
for (i=0; i<MAXOBJECTHANDLES; i++) {
if (!bHandleAllocated[i]) {
bHandleAllocated[i]=true;
return i;
}
}
bStatus=false;
return 0xffff;
}
void WMFWriter::FreeHandle(sal_uInt16 nObjectHandle)
{
if (nObjectHandle<MAXOBJECTHANDLES) bHandleAllocated[nObjectHandle]=false;
}
void WMFWriter::CreateSelectDeletePen( const Color& rColor, const LineInfo& rLineInfo )
{
sal_uInt16 nOldHandle;
nOldHandle=nDstPenHandle;
nDstPenHandle=AllocHandle();
WMFRecord_CreatePenIndirect( rColor, rLineInfo );
WMFRecord_SelectObject(nDstPenHandle);
if (nOldHandle<MAXOBJECTHANDLES) {
WMFRecord_DeleteObject(nOldHandle);
FreeHandle(nOldHandle);
}
}
void WMFWriter::CreateSelectDeleteFont(const vcl::Font & rFont)
{
sal_uInt16 nOldHandle;
nOldHandle=nDstFontHandle;
nDstFontHandle=AllocHandle();
WMFRecord_CreateFontIndirect(rFont);
WMFRecord_SelectObject(nDstFontHandle);
if (nOldHandle<MAXOBJECTHANDLES) {
WMFRecord_DeleteObject(nOldHandle);
FreeHandle(nOldHandle);
}
}
void WMFWriter::CreateSelectDeleteBrush(const Color& rColor)
{
sal_uInt16 nOldHandle;
nOldHandle=nDstBrushHandle;
nDstBrushHandle=AllocHandle();
WMFRecord_CreateBrushIndirect(rColor);
WMFRecord_SelectObject(nDstBrushHandle);
if (nOldHandle<MAXOBJECTHANDLES) {
WMFRecord_DeleteObject(nOldHandle);
FreeHandle(nOldHandle);
}
}
void WMFWriter::SetLineAndFillAttr()
{
if ( eDstROP2 != eSrcRasterOp )
{
eDstROP2=eSrcRasterOp;
WMFRecord_SetROP2(eDstROP2);
}
if ( ( aDstLineColor != aSrcLineColor ) || ( aDstLineInfo != aSrcLineInfo ) )
{
aDstLineColor = aSrcLineColor;
aDstLineInfo = aSrcLineInfo;
CreateSelectDeletePen( aDstLineColor, aDstLineInfo );
}
if ( aDstFillColor != aSrcFillColor )
{
aDstFillColor = aSrcFillColor;
CreateSelectDeleteBrush( aDstFillColor );
}
}
void WMFWriter::SetAllAttr()
{
SetLineAndFillAttr();
if ( aDstTextColor != aSrcTextColor )
{
aDstTextColor = aSrcTextColor;
WMFRecord_SetTextColor(aDstTextColor);
}
if ( eDstTextAlign != eSrcTextAlign || eDstHorTextAlign != eSrcHorTextAlign )
{
eDstTextAlign = eSrcTextAlign;
eDstHorTextAlign = eSrcHorTextAlign;
WMFRecord_SetTextAlign( eDstTextAlign, eDstHorTextAlign );
}
if ( aDstFont != aSrcFont )
{
pVirDev->SetFont(aSrcFont);
if ( aDstFont.GetFamilyName() != aSrcFont.GetFamilyName() )
{
FontCharMapRef xFontCharMap;
if ( pVirDev->GetFontCharMap( xFontCharMap ) )
{
if ( ( xFontCharMap->GetFirstChar() & 0xff00 ) == 0xf000 )
aSrcFont.SetCharSet( RTL_TEXTENCODING_SYMBOL );
else if ( aSrcFont.GetCharSet() == RTL_TEXTENCODING_SYMBOL )
aSrcFont.SetCharSet( RTL_TEXTENCODING_MS_1252 );
}
}
aDstFont = aSrcFont;
CreateSelectDeleteFont(aDstFont);
}
}
void WMFWriter::HandleLineInfoPolyPolygons(const LineInfo& rInfo, const basegfx::B2DPolygon& rLinePolygon)
{
if(rLinePolygon.count())
{
basegfx::B2DPolyPolygon aLinePolyPolygon(rLinePolygon);
basegfx::B2DPolyPolygon aFillPolyPolygon;
rInfo.applyToB2DPolyPolygon(aLinePolyPolygon, aFillPolyPolygon);
if(aLinePolyPolygon.count())
{
aSrcLineInfo = rInfo;
SetLineAndFillAttr();
for(auto const& rB2DPolygon : aLinePolyPolygon)
{
WMFRecord_PolyLine( tools::Polygon(rB2DPolygon) );
}
}
if(aFillPolyPolygon.count())
{
const Color aOldLineColor(aSrcLineColor);
const Color aOldFillColor(aSrcFillColor);
aSrcLineColor = COL_TRANSPARENT;
aSrcFillColor = aOldLineColor;
SetLineAndFillAttr();
for(auto const& rB2DPolygon : aFillPolyPolygon)
{
WMFRecord_Polygon( tools::Polygon(rB2DPolygon) );
}
aSrcLineColor = aOldLineColor;
aSrcFillColor = aOldFillColor;
SetLineAndFillAttr();
}
}
}
void WMFWriter::WriteRecords( const GDIMetaFile & rMTF )
{
if( bStatus )
{
size_t nACount = rMTF.GetActionSize();
WMFRecord_SetStretchBltMode();
for( size_t nA = 0; nA < nACount; nA++ )
{
MetaAction* pMA = rMTF.GetAction( nA );
switch( pMA->GetType() )
{
case MetaActionType::PIXEL:
{
const MetaPixelAction* pA = static_cast<const MetaPixelAction *>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_SetPixel( pA->GetPoint(), pA->GetColor() );
}
break;
case MetaActionType::POINT:
{
const MetaPointAction* pA = static_cast<const MetaPointAction*>(pMA);
const Point& rPt = pA->GetPoint();
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_MoveTo( rPt);
WMFRecord_LineTo( rPt );
}
break;
case MetaActionType::LINE:
{
const MetaLineAction* pA = static_cast<const MetaLineAction *>(pMA);
if(pA->GetLineInfo().IsDefault())
{
aSrcLineInfo = pA->GetLineInfo();
SetLineAndFillAttr();
WMFRecord_MoveTo( pA->GetStartPoint() );
WMFRecord_LineTo( pA->GetEndPoint() );
}
else
{
// LineInfo used; handle Dash/Dot and fat lines
basegfx::B2DPolygon aPolygon;
aPolygon.append(basegfx::B2DPoint(pA->GetStartPoint().X(), pA->GetStartPoint().Y()));
aPolygon.append(basegfx::B2DPoint(pA->GetEndPoint().X(), pA->GetEndPoint().Y()));
HandleLineInfoPolyPolygons(pA->GetLineInfo(), aPolygon);
}
}
break;
case MetaActionType::RECT:
{
const MetaRectAction* pA = static_cast<const MetaRectAction*>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_Rectangle( pA->GetRect() );
}
break;
case MetaActionType::ROUNDRECT:
{
const MetaRoundRectAction* pA = static_cast<const MetaRoundRectAction*>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_RoundRect( pA->GetRect(), pA->GetHorzRound(), pA->GetVertRound() );
}
break;
case MetaActionType::ELLIPSE:
{
const MetaEllipseAction* pA = static_cast<const MetaEllipseAction*>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_Ellipse( pA->GetRect() );
}
break;
case MetaActionType::ARC:
{
const MetaArcAction* pA = static_cast<const MetaArcAction*>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_Arc( pA->GetRect(),pA->GetStartPoint(),pA->GetEndPoint() );
}
break;
case MetaActionType::PIE:
{
const MetaPieAction* pA = static_cast<const MetaPieAction*>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_Pie( pA->GetRect(), pA->GetStartPoint(), pA->GetEndPoint() );
}
break;
case MetaActionType::CHORD:
{
const MetaChordAction* pA = static_cast<const MetaChordAction*>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_Chord( pA->GetRect(), pA->GetStartPoint(), pA->GetEndPoint() );
}
break;
case MetaActionType::POLYLINE:
{
const MetaPolyLineAction* pA = static_cast<const MetaPolyLineAction*>(pMA);
const tools::Polygon& rPoly = pA->GetPolygon();
if( rPoly.GetSize() )
{
if(pA->GetLineInfo().IsDefault())
{
aSrcLineInfo = pA->GetLineInfo();
SetLineAndFillAttr();
WMFRecord_PolyLine( rPoly );
}
else
{
// LineInfo used; handle Dash/Dot and fat lines
HandleLineInfoPolyPolygons(pA->GetLineInfo(), rPoly.getB2DPolygon());
}
}
}
break;
case MetaActionType::POLYGON:
{
const MetaPolygonAction* pA = static_cast<const MetaPolygonAction*>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_Polygon( pA->GetPolygon() );
}
break;
case MetaActionType::POLYPOLYGON:
{
const MetaPolyPolygonAction* pA = static_cast<const MetaPolyPolygonAction*>(pMA);
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_PolyPolygon( pA->GetPolyPolygon() );
}
break;
case MetaActionType::TEXTRECT:
{
const MetaTextRectAction * pA = static_cast<const MetaTextRectAction*>(pMA);
OUString aTemp( pA->GetText() );
aSrcLineInfo = LineInfo();
SetAllAttr();
Point aPos( pA->GetRect().TopLeft() );
if ( !WMFRecord_Escape_Unicode( aPos, aTemp, nullptr ) )
WMFRecord_TextOut( aPos, aTemp );
}
break;
case MetaActionType::TEXT:
{
const MetaTextAction * pA = static_cast<const MetaTextAction*>(pMA);
OUString aTemp = pA->GetText().copy( pA->GetIndex(), std::min<sal_Int32>(pA->GetText().getLength() - pA->GetIndex(), pA->GetLen()) );
aSrcLineInfo = LineInfo();
SetAllAttr();
if ( !WMFRecord_Escape_Unicode( pA->GetPoint(), aTemp, nullptr ) )
WMFRecord_TextOut( pA->GetPoint(), aTemp );
}
break;
case MetaActionType::TEXTARRAY:
{
const MetaTextArrayAction* pA = static_cast<const MetaTextArrayAction*>(pMA);
OUString aTemp = pA->GetText().copy( pA->GetIndex(), std::min<sal_Int32>(pA->GetText().getLength() - pA->GetIndex(), pA->GetLen()) );
aSrcLineInfo = LineInfo();
SetAllAttr();
if ( !WMFRecord_Escape_Unicode( pA->GetPoint(), aTemp, pA->GetDXArray() ) )
WMFRecord_ExtTextOut( pA->GetPoint(), aTemp, pA->GetDXArray() );
}
break;
case MetaActionType::STRETCHTEXT:
{
const MetaStretchTextAction* pA = static_cast<const MetaStretchTextAction *>(pMA);
OUString aTemp = pA->GetText().copy( pA->GetIndex(), std::min<sal_Int32>(pA->GetText().getLength() - pA->GetIndex(), pA->GetLen()) );
pVirDev->SetFont( aSrcFont );
const sal_Int32 nLen = aTemp.getLength();
std::unique_ptr<long[]> pDXAry(nLen ? new long[ nLen ] : nullptr);
const sal_Int32 nNormSize = pVirDev->GetTextArray( aTemp, pDXAry.get() );
if (nLen && nNormSize == 0)
{
OSL_FAIL("Impossible div by 0 action: MetaStretchTextAction!");
}
else
{
for ( sal_Int32 i = 0; i < ( nLen - 1 ); i++ )
pDXAry[ i ] = pDXAry[ i ] * static_cast<sal_Int32>(pA->GetWidth()) / nNormSize;
if ( ( nLen <= 1 ) || ( static_cast<sal_Int32>(pA->GetWidth()) == nNormSize ) )
pDXAry.reset();
aSrcLineInfo = LineInfo();
SetAllAttr();
if ( !WMFRecord_Escape_Unicode( pA->GetPoint(), aTemp, pDXAry.get() ) )
WMFRecord_ExtTextOut( pA->GetPoint(), aTemp, pDXAry.get() );
}
}
break;
case MetaActionType::BMP:
{
const MetaBmpAction* pA = static_cast<const MetaBmpAction *>(pMA);
WMFRecord_StretchDIB( pA->GetPoint(), pA->GetBitmap().GetSizePixel(), pA->GetBitmap() );
}
break;
case MetaActionType::BMPSCALE:
{
const MetaBmpScaleAction* pA = static_cast<const MetaBmpScaleAction*>(pMA);
WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), pA->GetBitmap() );
}
break;
case MetaActionType::BMPSCALEPART:
{
const MetaBmpScalePartAction* pA = static_cast<const MetaBmpScalePartAction*>(pMA);
Bitmap aTmp( pA->GetBitmap() );
if( aTmp.Crop( tools::Rectangle( pA->GetSrcPoint(), pA->GetSrcSize() ) ) )
WMFRecord_StretchDIB( pA->GetDestPoint(), pA->GetDestSize(), aTmp );
}
break;
case MetaActionType::BMPEX:
{
const MetaBmpExAction* pA = static_cast<const MetaBmpExAction *>(pMA);
Bitmap aBmp( pA->GetBitmapEx().GetBitmap() );
Bitmap aMsk( pA->GetBitmapEx().GetMask() );
if( !!aMsk )
{
aBmp.Replace( aMsk, COL_WHITE );
aMsk.Invert();
WMFRecord_StretchDIB( pA->GetPoint(), aMsk.GetSizePixel(), aBmp, W_SRCPAINT );
WMFRecord_StretchDIB( pA->GetPoint(), aBmp.GetSizePixel(), aBmp, W_SRCAND );
}
else
WMFRecord_StretchDIB( pA->GetPoint(), aBmp.GetSizePixel(), aBmp );
}
break;
case MetaActionType::BMPEXSCALE:
{
const MetaBmpExScaleAction* pA = static_cast<const MetaBmpExScaleAction*>(pMA);
Bitmap aBmp( pA->GetBitmapEx().GetBitmap() );
Bitmap aMsk( pA->GetBitmapEx().GetMask() );
if( !!aMsk )
{
aBmp.Replace( aMsk, COL_WHITE );
aMsk.Invert();
WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), aMsk, W_SRCPAINT );
WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), aBmp, W_SRCAND );
}
else
WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), aBmp );
}
break;
case MetaActionType::BMPEXSCALEPART:
{
const MetaBmpExScalePartAction* pA = static_cast<const MetaBmpExScalePartAction*>(pMA);
BitmapEx aBmpEx( pA->GetBitmapEx() );
aBmpEx.Crop( tools::Rectangle( pA->GetSrcPoint(), pA->GetSrcSize() ) );
Bitmap aBmp( aBmpEx.GetBitmap() );
Bitmap aMsk( aBmpEx.GetMask() );
if( !!aMsk )
{
aBmp.Replace( aMsk, COL_WHITE );
aMsk.Invert();
WMFRecord_StretchDIB( pA->GetDestPoint(), pA->GetDestSize(), aMsk, W_SRCPAINT );
WMFRecord_StretchDIB( pA->GetDestPoint(), pA->GetDestSize(), aBmp, W_SRCAND );
}
else
WMFRecord_StretchDIB( pA->GetDestPoint(), pA->GetDestSize(), aBmp );
}
break;
case MetaActionType::GRADIENT:
{
const MetaGradientAction* pA = static_cast<const MetaGradientAction*>(pMA);
GDIMetaFile aTmpMtf;
pVirDev->AddGradientActions( pA->GetRect(), pA->GetGradient(), aTmpMtf );
WriteRecords( aTmpMtf );
}
break;
case MetaActionType::HATCH:
{
const MetaHatchAction* pA = static_cast<const MetaHatchAction*>(pMA);
GDIMetaFile aTmpMtf;
pVirDev->AddHatchActions( pA->GetPolyPolygon(), pA->GetHatch(), aTmpMtf );
WriteRecords( aTmpMtf );
}
break;
case MetaActionType::WALLPAPER:
{
const MetaWallpaperAction* pA = static_cast<const MetaWallpaperAction*>(pMA);
const Color& rColor = pA->GetWallpaper().GetColor();
const Color aOldLineColor( aSrcLineColor );
const Color aOldFillColor( aSrcFillColor );
aSrcLineColor = rColor;
aSrcFillColor = rColor;
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_Rectangle( pA->GetRect() );
aSrcLineColor = aOldLineColor;
aSrcFillColor = aOldFillColor;
}
break;
case MetaActionType::ISECTRECTCLIPREGION:
{
const MetaISectRectClipRegionAction* pA = static_cast<const MetaISectRectClipRegionAction*>(pMA);
WMFRecord_IntersectClipRect( pA->GetRect() );
}
break;
case MetaActionType::LINECOLOR:
{
const MetaLineColorAction* pA = static_cast<const MetaLineColorAction*>(pMA);
if( pA->IsSetting() )
aSrcLineColor = pA->GetColor();
else
aSrcLineColor = COL_TRANSPARENT;
}
break;
case MetaActionType::FILLCOLOR:
{
const MetaFillColorAction* pA = static_cast<const MetaFillColorAction*>(pMA);
if( pA->IsSetting() )
aSrcFillColor = pA->GetColor();
else
aSrcFillColor = COL_TRANSPARENT;
}
break;
case MetaActionType::TEXTCOLOR:
{
const MetaTextColorAction* pA = static_cast<const MetaTextColorAction*>(pMA);
aSrcTextColor = pA->GetColor();
}
break;
case MetaActionType::TEXTFILLCOLOR:
{
const MetaTextFillColorAction* pA = static_cast<const MetaTextFillColorAction*>(pMA);
if( pA->IsSetting() )
aSrcFont.SetFillColor( pA->GetColor() );
else
aSrcFont.SetFillColor( COL_TRANSPARENT );
}
break;
case MetaActionType::TEXTALIGN:
{
const MetaTextAlignAction* pA = static_cast<const MetaTextAlignAction*>(pMA);
eSrcTextAlign = pA->GetTextAlign();
}
break;
case MetaActionType::MAPMODE:
{
const MetaMapModeAction* pA = static_cast<const MetaMapModeAction*>(pMA);
if (aSrcMapMode!=pA->GetMapMode())
{
if( pA->GetMapMode().GetMapUnit() == MapUnit::MapRelative )
{
const MapMode& aMM = pA->GetMapMode();
Fraction aScaleX = aMM.GetScaleX();
Fraction aScaleY = aMM.GetScaleY();
Point aOrigin = aSrcMapMode.GetOrigin();
BigInt aX( aOrigin.X() );
aX *= BigInt( aScaleX.GetDenominator() );
if( aOrigin.X() >= 0 )
if( aScaleX.GetNumerator() >= 0 )
aX += BigInt( aScaleX.GetNumerator()/2 );
else
aX -= BigInt( (aScaleX.GetNumerator()+1)/2 );
else
if( aScaleX.GetNumerator() >= 0 )
aX -= BigInt( (aScaleX.GetNumerator()-1)/2 );
else
aX += BigInt( aScaleX.GetNumerator()/2 );
aX /= BigInt( aScaleX.GetNumerator() );
aOrigin.setX( static_cast<long>(aX) + aMM.GetOrigin().X() );
BigInt aY( aOrigin.Y() );
aY *= BigInt( aScaleY.GetDenominator() );
if( aOrigin.Y() >= 0 )
if( aScaleY.GetNumerator() >= 0 )
aY += BigInt( aScaleY.GetNumerator()/2 );
else
aY -= BigInt( (aScaleY.GetNumerator()+1)/2 );
else
if( aScaleY.GetNumerator() >= 0 )
aY -= BigInt( (aScaleY.GetNumerator()-1)/2 );
else
aY += BigInt( aScaleY.GetNumerator()/2 );
aY /= BigInt( aScaleY.GetNumerator() );
aOrigin.setY( static_cast<long>(aY) + aMM.GetOrigin().Y() );
aSrcMapMode.SetOrigin( aOrigin );
aScaleX *= aSrcMapMode.GetScaleX();
aScaleY *= aSrcMapMode.GetScaleY();
aSrcMapMode.SetScaleX( aScaleX );
aSrcMapMode.SetScaleY( aScaleY );
}
else
aSrcMapMode=pA->GetMapMode();
}
}
break;
case MetaActionType::FONT:
{
const MetaFontAction* pA = static_cast<const MetaFontAction*>(pMA);
aSrcFont = pA->GetFont();
if ( (aSrcFont.GetCharSet() == RTL_TEXTENCODING_DONTKNOW)
|| (aSrcFont.GetCharSet() == RTL_TEXTENCODING_UNICODE) )
{
aSrcFont.SetCharSet( RTL_TEXTENCODING_MS_1252 );
}
eSrcTextAlign = aSrcFont.GetAlignment();
aSrcTextColor = aSrcFont.GetColor();
aSrcFont.SetAlignment( ALIGN_BASELINE );
aSrcFont.SetColor( COL_WHITE );
}
break;
case MetaActionType::PUSH:
{
const MetaPushAction* pA = static_cast<const MetaPushAction*>(pMA);
WMFWriterAttrStackMember* pAt = new WMFWriterAttrStackMember;
pAt->nFlags = pA->GetFlags();
pAt->aClipRegion = aSrcClipRegion;
pAt->aLineColor=aSrcLineColor;
pAt->aFillColor=aSrcFillColor;
pAt->eRasterOp=eSrcRasterOp;
pAt->aFont=aSrcFont;
pAt->eTextAlign=eSrcTextAlign;
pAt->aTextColor=aSrcTextColor;
pAt->aMapMode=aSrcMapMode;
pAt->aLineInfo=aDstLineInfo;
pAt->pSucc=pAttrStack;
pAttrStack=pAt;
SetAllAttr(); // update ( now all source attributes are equal to the destination attributes )
WMFRecord_SaveDC();
}
break;
case MetaActionType::POP:
{
WMFWriterAttrStackMember * pAt=pAttrStack;
if( pAt )
{
aDstLineInfo = pAt->aLineInfo;
aDstLineColor = pAt->aLineColor;
if ( pAt->nFlags & PushFlags::LINECOLOR )
aSrcLineColor = pAt->aLineColor;
aDstFillColor = pAt->aFillColor;
if ( pAt->nFlags & PushFlags::FILLCOLOR )
aSrcFillColor = pAt->aFillColor;
eDstROP2 = pAt->eRasterOp;
if ( pAt->nFlags & PushFlags::RASTEROP )
eSrcRasterOp = pAt->eRasterOp;
aDstFont = pAt->aFont;
if ( pAt->nFlags & PushFlags::FONT )
aSrcFont = pAt->aFont;
eDstTextAlign = pAt->eTextAlign;
if ( pAt->nFlags & ( PushFlags::FONT | PushFlags::TEXTALIGN ) )
eSrcTextAlign = pAt->eTextAlign;
aDstTextColor = pAt->aTextColor;
if ( pAt->nFlags & ( PushFlags::FONT | PushFlags::TEXTCOLOR ) )
aSrcTextColor = pAt->aTextColor;
if ( pAt->nFlags & PushFlags::MAPMODE )
aSrcMapMode = pAt->aMapMode;
aDstClipRegion = pAt->aClipRegion;
if ( pAt->nFlags & PushFlags::CLIPREGION )
aSrcClipRegion = pAt->aClipRegion;
WMFRecord_RestoreDC();
pAttrStack = pAt->pSucc;
delete pAt;
}
}
break;
case MetaActionType::EPS :
{
const MetaEPSAction* pA = static_cast<const MetaEPSAction*>(pMA);
const GDIMetaFile& aGDIMetaFile( pA->GetSubstitute() );
size_t nCount = aGDIMetaFile.GetActionSize();
for ( size_t i = 0; i < nCount; i++ )
{
const MetaAction* pMetaAct = aGDIMetaFile.GetAction( i );
if ( pMetaAct->GetType() == MetaActionType::BMPSCALE )
{
const MetaBmpScaleAction* pBmpScaleAction = static_cast<const MetaBmpScaleAction*>(pMetaAct);
WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), pBmpScaleAction->GetBitmap() );
break;
}
}
}
break;
case MetaActionType::RASTEROP:
{
const MetaRasterOpAction* pA = static_cast<const MetaRasterOpAction*>(pMA);
eSrcRasterOp=pA->GetRasterOp();
}
break;
case MetaActionType::Transparent:
{
aSrcLineInfo = LineInfo();
SetLineAndFillAttr();
WMFRecord_PolyPolygon( static_cast<const MetaTransparentAction*>(pMA)->GetPolyPolygon() );
}
break;
case MetaActionType::FLOATTRANSPARENT:
{
const MetaFloatTransparentAction* pA = static_cast<const MetaFloatTransparentAction*>(pMA);
GDIMetaFile aTmpMtf( pA->GetGDIMetaFile() );
Point aSrcPt( aTmpMtf.GetPrefMapMode().GetOrigin() );
const Size aSrcSize( aTmpMtf.GetPrefSize() );
const Point aDestPt( pA->GetPoint() );
const Size aDestSize( pA->GetSize() );
const double fScaleX = aSrcSize.Width() ? static_cast<double>(aDestSize.Width()) / aSrcSize.Width() : 1.0;
const double fScaleY = aSrcSize.Height() ? static_cast<double>(aDestSize.Height()) / aSrcSize.Height() : 1.0;
long nMoveX, nMoveY;
aSrcLineInfo = LineInfo();
SetAllAttr();
if( fScaleX != 1.0 || fScaleY != 1.0 )
{
aTmpMtf.Scale( fScaleX, fScaleY );
aSrcPt.setX( FRound( aSrcPt.X() * fScaleX ) );
aSrcPt.setY( FRound( aSrcPt.Y() * fScaleY ) );
}
nMoveX = aDestPt.X() - aSrcPt.X();
nMoveY = aDestPt.Y() - aSrcPt.Y();
if( nMoveX || nMoveY )
aTmpMtf.Move( nMoveX, nMoveY );
WriteRecords( aTmpMtf );
}
break;
case MetaActionType::LAYOUTMODE:
{
ComplexTextLayoutFlags nLayoutMode = static_cast<const MetaLayoutModeAction*>(pMA)->GetLayoutMode();
eSrcHorTextAlign = 0; // TA_LEFT
if ((nLayoutMode & ComplexTextLayoutFlags::BiDiRtl) != ComplexTextLayoutFlags::Default)
{
eSrcHorTextAlign = W_TA_RIGHT | W_TA_RTLREADING;
}
if ((nLayoutMode & ComplexTextLayoutFlags::TextOriginRight) != ComplexTextLayoutFlags::Default)
eSrcHorTextAlign |= W_TA_RIGHT;
else if ((nLayoutMode & ComplexTextLayoutFlags::TextOriginLeft) != ComplexTextLayoutFlags::Default)
eSrcHorTextAlign &= ~W_TA_RIGHT;
break;
}
case MetaActionType::CLIPREGION:
case MetaActionType::TEXTLANGUAGE:
case MetaActionType::COMMENT:
// Explicitly ignored cases
break;
default:
// TODO: Implement more cases as necessary. Let's not bother with a warning.
break;
}
nWrittenActions++;
MayCallback();
if (pWMF->GetError())
bStatus=false;
if(!bStatus)
break;
}
}
}
void WMFWriter::WriteHeader( bool bPlaceable )
{
if( bPlaceable )
{
sal_uInt16 nCheckSum, nValue;
Size aSize( OutputDevice::LogicToLogic(Size(1,1),MapMode(MapUnit::MapInch), aTargetMapMode) );
sal_uInt16 nUnitsPerInch = static_cast<sal_uInt16>( ( aSize.Width() + aSize.Height() ) >> 1 );
nCheckSum=0;
nValue=0xcdd7; nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=0x9ac6; nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=0x0000; nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=0x0000; nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=0x0000; nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=static_cast<sal_uInt16>(aTargetSize.Width()); nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=static_cast<sal_uInt16>(aTargetSize.Height()); nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=nUnitsPerInch; nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=0x0000; nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
nValue=0x0000; nCheckSum^=nValue; pWMF->WriteUInt16( nValue );
pWMF->WriteUInt16( nCheckSum );
}
nMetafileHeaderPos=pWMF->Tell();
pWMF->WriteUInt16( 0x0001 ) // type: file
.WriteUInt16( 0x0009 ) // header length in words
.WriteUInt16( 0x0300 ) // Version as BCD number
.WriteUInt32( 0x00000000 ) // file length (without 1st header), is later corrected by UpdateHeader()
.WriteUInt16( MAXOBJECTHANDLES ) // maximum number of simultaneous objects
.WriteUInt32( 0x00000000 ) // maximum record length, is later corrected by UpdateHeader()
.WriteUInt16( 0x0000 ); // reserved
}
void WMFWriter::UpdateHeader()
{
sal_uLong nPos;
sal_uInt32 nFileSize;
nPos=pWMF->Tell(); // endposition = total size of file
nFileSize=nPos-nMetafileHeaderPos; // subtract size of 1st header
if ((nFileSize&1)!=0) { // if needed round to words
pWMF->WriteUChar( 0 );
nPos++;
nFileSize++;
}
nFileSize>>=1; // convert to number of words
pWMF->Seek(nMetafileHeaderPos+6); // to filesize entry in second header
pWMF->WriteUInt32( nFileSize ); // rectify file size
pWMF->SeekRel(2); // to max-record-length-entry in second header
pWMF->WriteUInt32( nMaxRecordSize ); // and rectify
pWMF->Seek(nPos);
}
bool WMFWriter::WriteWMF( const GDIMetaFile& rMTF, SvStream& rTargetStream,
FilterConfigItem const * pFConfigItem, bool bPlaceable )
{
WMFWriterAttrStackMember * pAt;
bEmbedEMF = true;
bStatus=true;
pVirDev = VclPtr<VirtualDevice>::Create();
if (pFConfigItem)
{
xStatusIndicator = pFConfigItem->GetStatusIndicator();
if ( xStatusIndicator.is() )
{
xStatusIndicator->start( OUString(), 100 );
}
}
nLastPercent=0;
pWMF=&rTargetStream;
pWMF->SetEndian(SvStreamEndian::LITTLE);
nMaxRecordSize=0;
aSrcMapMode=rMTF.GetPrefMapMode();
if( bPlaceable )
{
aTargetMapMode = aSrcMapMode;
aTargetSize = rMTF.GetPrefSize();
sal_uInt16 nTargetDivisor = CalcSaveTargetMapMode(aTargetMapMode, aTargetSize);
aTargetSize.setWidth( aTargetSize.Width() / nTargetDivisor );
aTargetSize.setHeight( aTargetSize.Height() / nTargetDivisor );
}
else
{
aTargetMapMode = MapMode( MapUnit::MapInch );
const long nUnit = pVirDev->LogicToPixel( Size( 1, 1 ), aTargetMapMode ).Width();
const Fraction aFrac( 1, nUnit );
aTargetMapMode.SetScaleX( aFrac );
aTargetMapMode.SetScaleY( aFrac );
aTargetSize = OutputDevice::LogicToLogic( rMTF.GetPrefSize(), aSrcMapMode, aTargetMapMode );
}
pVirDev->SetMapMode( aTargetMapMode );
pAttrStack=nullptr;
for (bool & rn : bHandleAllocated)
rn=false;
nDstPenHandle=0xffff;
nDstFontHandle=0xffff;
nDstBrushHandle=0xffff;
nNumberOfActions=0;
nNumberOfBitmaps=0;
nWrittenActions=0;
nWrittenBitmaps=0;
nActBitmapPercent=0;
CountActionsAndBitmaps(rMTF);
WriteHeader(bPlaceable);
if( bEmbedEMF )
WriteEmbeddedEMF( rMTF );
WMFRecord_SetWindowOrg(Point(0,0));
WMFRecord_SetWindowExt(rMTF.GetPrefSize());
WMFRecord_SetBkMode( true );
eDstROP2 = eSrcRasterOp = RasterOp::OverPaint;
WMFRecord_SetROP2(eDstROP2);
aDstLineInfo = LineInfo();
aDstLineColor = aSrcLineColor = COL_BLACK;
CreateSelectDeletePen( aDstLineColor, aDstLineInfo );
aDstFillColor = aSrcFillColor = COL_WHITE;
CreateSelectDeleteBrush( aDstFillColor );
aDstClipRegion = aSrcClipRegion = vcl::Region();
vcl::Font aFont;
aFont.SetCharSet( GetExtendedTextEncoding( RTL_TEXTENCODING_MS_1252 ) );
aFont.SetColor( COL_WHITE );
aFont.SetAlignment( ALIGN_BASELINE );
aDstFont = aSrcFont = aFont;
CreateSelectDeleteFont(aDstFont);
eDstTextAlign = eSrcTextAlign = ALIGN_BASELINE;
eDstHorTextAlign = eSrcHorTextAlign = W_TA_LEFT;
WMFRecord_SetTextAlign( eDstTextAlign, eDstHorTextAlign );
aDstTextColor = aSrcTextColor = COL_WHITE;
WMFRecord_SetTextColor(aDstTextColor);
// Write records
WriteRecords(rMTF);
WriteRecordHeader(0x00000003,0x0000); // end of file
UpdateHeader();
while(pAttrStack)
{
pAt=pAttrStack;
pAttrStack=pAt->pSucc;
delete pAt;
}
pVirDev.disposeAndClear();
if ( xStatusIndicator.is() )
xStatusIndicator->end();
return bStatus;
}
sal_uInt16 WMFWriter::CalcSaveTargetMapMode(MapMode& rMapMode,
const Size& rPrefSize)
{
Fraction aDivFrac(2, 1);
sal_uInt16 nDivisor = 1;
Size aSize = OutputDevice::LogicToLogic( rPrefSize, aSrcMapMode, rMapMode );
while( nDivisor <= 64 && (aSize.Width() > 32767 || aSize.Height() > 32767) )
{
Fraction aFrac = rMapMode.GetScaleX();
aFrac *= aDivFrac;
rMapMode.SetScaleX(aFrac);
aFrac = rMapMode.GetScaleY();
aFrac *= aDivFrac;
rMapMode.SetScaleY(aFrac);
nDivisor <<= 1;
aSize = OutputDevice::LogicToLogic( rPrefSize, aSrcMapMode, rMapMode );
}
return nDivisor;
}
void WMFWriter::WriteEmbeddedEMF( const GDIMetaFile& rMTF )
{
SvMemoryStream aStream;
EMFWriter aEMFWriter(aStream);
if( !aEMFWriter.WriteEMF( rMTF ) )
return;
sal_uInt64 const nTotalSize = aStream.Tell();
if( nTotalSize > SAL_MAX_UINT32 )
return;
aStream.Seek( 0 );
sal_uInt32 nRemainingSize = static_cast< sal_uInt32 >( nTotalSize );
sal_uInt32 nRecCounts = ( (nTotalSize - 1) / 0x2000 ) + 1;
sal_uInt16 nCheckSum = 0, nWord;
sal_uInt32 nPos = 0;
while( nPos + 1 < nTotalSize )
{
aStream.ReadUInt16( nWord );
nCheckSum ^= nWord;
nPos += 2;
}
nCheckSum = static_cast< sal_uInt16 >( nCheckSum * -1 );
aStream.Seek( 0 );
while( nRemainingSize > 0 )
{
sal_uInt32 nCurSize;
if( nRemainingSize > 0x2000 )
{
nCurSize = 0x2000;
nRemainingSize -= 0x2000;
}
else
{
nCurSize = nRemainingSize;
nRemainingSize = 0;
}
WriteEMFRecord( aStream,
nCurSize,
nRemainingSize,
nTotalSize,
nRecCounts,
nCheckSum );
nCheckSum = 0;
}
}
void WMFWriter::WriteEMFRecord( SvMemoryStream& rStream, sal_uInt32 nCurSize, sal_uInt32 nRemainingSize,
sal_uInt32 nTotalSize, sal_uInt32 nRecCounts, sal_uInt16 nCheckSum )
{
// according to http://msdn.microsoft.com/en-us/library/dd366152%28PROT.13%29.aspx
WriteRecordHeader( 0, W_META_ESCAPE );
pWMF->WriteUInt16( W_MFCOMMENT ) // same as META_ESCAPE_ENHANCED_METAFILE
.WriteUInt16( nCurSize + 34 ) // we will always have a 34 byte escape header:
.WriteUInt32( 0x43464D57 ) // WMFC
.WriteUInt32( 0x00000001 ) // Comment type
.WriteUInt32( 0x00010000 ) // version
.WriteUInt16( nCheckSum ) // check sum
.WriteUInt32( 0 ) // flags = 0
.WriteUInt32( nRecCounts ) // total number of records
.WriteUInt32( nCurSize ) // size of this record's data
.WriteUInt32( nRemainingSize ) // remaining size of data in following records, missing in MSDN documentation
.WriteUInt32( nTotalSize ); // total size of EMF stream
pWMF->WriteBytes(static_cast<const char*>(rStream.GetData()) + rStream.Tell(), nCurSize);
rStream.SeekRel( nCurSize );
UpdateRecordHeader();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|