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
|
/* Copyright (C) 2001-2012 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/*
GhostScript Font API plug-in that allows fonts to be rendered by FreeType.
Started by Graham Asher, 6th June 2002.
*/
/* GhostScript headers. */
#include "stdio_.h"
#include "malloc_.h"
#include "ierrors.h"
#include "ifapi.h"
#include "write_t1.h"
#include "write_t2.h"
#include "math_.h"
#include "gserrors.h"
#include "gsmemory.h"
#include "gsmalloc.h"
#include "gxfixed.h"
#include "gdebug.h"
#include "gxbitmap.h"
#include "gsmchunk.h"
#include "stream.h"
#include "gxiodev.h" /* must come after stream.h */
#include "gsfname.h"
/* FreeType headers */
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_INCREMENTAL_H
#include FT_GLYPH_H
#include FT_SYSTEM_H
#include FT_MODULE_H
#include FT_TRIGONOMETRY_H
#include FT_BBOX_H
#include FT_OUTLINE_H
#include FT_IMAGE_H
#include FT_BITMAP_H
/* Note: structure definitions here start with FF_, which stands for 'FAPI FreeType". */
typedef struct FF_server_s
{
FAPI_server fapi_server;
FT_Library freetype_library;
FT_OutlineGlyph outline_glyph;
FT_BitmapGlyph bitmap_glyph;
gs_memory_t *mem;
FT_Memory ftmemory;
struct FT_MemoryRec_ ftmemory_rec;
} FF_server;
typedef struct FF_face_s
{
FT_Face ft_face;
/* Currently in force scaling/transform for this face */
FT_Matrix ft_transform;
FT_F26Dot6 width, height;
FT_UInt horz_res;
FT_UInt vert_res;
/* If non-null, the incremental interface object passed to FreeType. */
FT_Incremental_InterfaceRec *ft_inc_int;
/* If non-null, we're using a custom stream object for Freetype to read the font file */
FT_Stream ftstrm;
/* Non-null if font data is owned by this object. */
unsigned char *font_data;
} FF_face;
/* Here we define the struct FT_Incremental that is used as an opaque type
* inside FreeType. This structure has to have the tag FT_IncrementalRec_
* to be compatible with the functions defined in FT_Incremental_FuncsRec.
*/
typedef struct FT_IncrementalRec_
{
FAPI_font *fapi_font; /* The font. */
/* If it is already in use glyph data is allocated on the heap. */
unsigned char *glyph_data; /* A one-shot buffer for glyph data. */
size_t glyph_data_length; /* Length in bytes of glyph_data. */
bool glyph_data_in_use; /* True if glyph_data is already in use. */
FT_Incremental_MetricsRec glyph_metrics; /* Incremental glyph metrics supplied by Ghostscript. */
unsigned long glyph_metrics_index; /* contains data for this glyph index unless it is 0xFFFFFFFF. */
FAPI_metrics_type metrics_type; /* determines whether metrics are replaced, added, etc. */
} FT_IncrementalRec;
FT_CALLBACK_DEF( void* )
FF_alloc( FT_Memory memory, long size)
{
gs_memory_t *mem = (gs_memory_t *)memory->user;
return(gs_malloc (mem, size, 1, "FF_alloc"));
}
FT_CALLBACK_DEF( void* )
FF_realloc(FT_Memory memory, long cur_size, long new_size, void* block)
{
gs_memory_t *mem = (gs_memory_t *)memory->user;
void *tmp;
if (cur_size == new_size) {
return (block);
}
tmp = gs_malloc (mem, new_size, 1, "FF_realloc");
if (tmp && block) {
memcpy (tmp, block, min(cur_size, new_size));
gs_free (mem, block, 0, 0, "FF_realloc");
}
return(tmp);
}
FT_CALLBACK_DEF( void )
FF_free(FT_Memory memory, void* block)
{
gs_memory_t *mem = (gs_memory_t *)memory->user;
gs_free (mem, block, 0, 0, "FF_free");
}
/* The following three functions are used in providing a custom stream
* object to Freetype, so file access happens through Ghostscript's
* file i/o. Most importantly, this gives Freetype direct access to
* files in the romfs
*/
static FT_ULong FF_stream_read (FT_Stream str, unsigned long offset, unsigned char* buffer, unsigned long count)
{
stream *ps = (stream *)str->descriptor.pointer;
unsigned int rlen = 0;
int status = 0;
if (sseek(ps, offset) < 0)
return_error(-1);
if (count) {
status = sgets(ps, buffer, count, &rlen);
if (status < 0 && status != EOFC)
return(-1);
}
return(rlen);
}
static void FF_stream_close (FT_Stream str)
{
stream *ps = (stream *)str->descriptor.pointer;
(void)sclose(ps);
}
extern const uint file_default_buffer_size;
static int FF_open_read_stream (gs_memory_t *mem, char *fname, FT_Stream *fts)
{
int code = 0;
gs_parsed_file_name_t pfn;
stream *ps = (stream *)NULL;
long length;
FT_Stream ftstrm = NULL;
code = gs_parse_file_name(&pfn, (const char *)fname, strlen(fname), mem);
if (code < 0){
goto error_out;
}
if (!pfn.fname) {
code = e_undefinedfilename;
goto error_out;
}
if (pfn.iodev == NULL) {
pfn.iodev = iodev_default(mem);
}
if (pfn.iodev) {
gx_io_device *const iodev = pfn.iodev;
iodev_proc_open_file((*open_file)) = iodev->procs.open_file;
if (open_file) {
code = open_file(iodev, pfn.fname, pfn.len, "r", &ps, mem);
if (code < 0) {
goto error_out;
}
}
else {
code = file_open_stream(pfn.fname, pfn.len, "r", file_default_buffer_size,
&ps, pfn.iodev, pfn.iodev->procs.fopen, mem);
if (code < 0) {
goto error_out;
}
}
}
if ((code = savailable(ps, &length)) < 0){
goto error_out;
}
ftstrm = gs_malloc(mem, sizeof(FT_StreamRec), 1, "FF_open_read_stream");
if (!ftstrm){
code = e_VMerror;
goto error_out;
}
memset(ftstrm, 0x00, sizeof(FT_StreamRec));
ftstrm->descriptor.pointer = ps;
ftstrm->read = FF_stream_read;
ftstrm->close = FF_stream_close;
ftstrm->size = length;
*fts = ftstrm;
error_out:
if (code < 0) {
if (ps) (void)sclose(ps);
if (ftstrm) gs_free(mem, ftstrm, 0, 0, "FF_open_read_stream");
}
return(code);
}
static FF_face *
new_face(FAPI_server *a_server, FT_Face a_ft_face, FT_Incremental_InterfaceRec *a_ft_inc_int, FT_Stream ftstrm, unsigned char *a_font_data)
{
FF_server *s = (FF_server*)a_server;
FF_face *face = (FF_face *)FF_alloc(s->ftmemory, sizeof(FF_face));
if (face)
{
face->ft_face = a_ft_face;
face->ft_inc_int = a_ft_inc_int;
face->font_data = a_font_data;
face->ftstrm = ftstrm;
}
return face;
}
static void
delete_face(FAPI_server *a_server, FF_face *a_face)
{
if (a_face)
{
FF_server *s = (FF_server*)a_server;
FT_Done_Face(a_face->ft_face);
FF_free(s->ftmemory, a_face->ft_inc_int);
FF_free(s->ftmemory, a_face->font_data);
if (a_face->ftstrm) {
FF_free(s->ftmemory, a_face->ftstrm);
}
FF_free(s->ftmemory, a_face);
}
}
static FT_IncrementalRec *
new_inc_int_info(FAPI_server *a_server, FAPI_font *a_fapi_font)
{
FF_server *s = (FF_server*)a_server;
FT_IncrementalRec *info = (FT_IncrementalRec*)FF_alloc(s->ftmemory, sizeof(FT_IncrementalRec));
if (info)
{
info->fapi_font = a_fapi_font;
info->glyph_data = NULL;
info->glyph_data_length = 0;
info->glyph_data_in_use = false;
info->glyph_metrics_index = 0xFFFFFFFF;
info->metrics_type = FAPI_METRICS_NOTDEF;
}
return info;
}
static void
delete_inc_int_info(FAPI_server *a_server, FT_IncrementalRec *a_inc_int_info)
{
FF_server *s = (FF_server*)a_server;
if (a_inc_int_info)
{
FF_free(s->ftmemory, a_inc_int_info->glyph_data);
FF_free(s->ftmemory, a_inc_int_info);
}
}
static FT_Error
get_fapi_glyph_data(FT_Incremental a_info, FT_UInt a_index, FT_Data *a_data)
{
FAPI_font *ff = a_info->fapi_font;
int length = 0;
/* Tell the FAPI interface that we need to decrypt the glyph data. */
ff->need_decrypt = true;
/* If glyph_data is already in use (as will happen for composite glyphs)
* create a new buffer on the heap.
*/
if (a_info->glyph_data_in_use)
{
unsigned char *buffer = NULL;
length = ff->get_glyph(ff, a_index, NULL, 0);
if (length == 65535)
return FT_Err_Invalid_Glyph_Index;
buffer = gs_malloc ((gs_memory_t *)a_info->fapi_font->memory, length, 1, "get_fapi_glyph_data");
if (!buffer)
return FT_Err_Out_Of_Memory;
length = ff->get_glyph(ff, a_index, buffer, length);
if (length == 65535) {
gs_free ((gs_memory_t *)a_info->fapi_font->memory, buffer, 0, 0, "get_fapi_glyph_data");
return FT_Err_Invalid_Glyph_Index;
}
a_data->pointer = buffer;
}
else
{
/* Save ff->char_data, which is set to null by FAPI_FF_get_glyph as part of a hack to
* make the deprecated Type 2 endchar ('seac') work, so that it can be restored
* if we need to try again with a longer buffer.
*/
const void *saved_char_data = ff->char_data;
/* Get as much of the glyph data as possible into the buffer */
length = ff->get_glyph(ff, a_index, a_info->glyph_data, (ushort)a_info->glyph_data_length);
if (length == -1) {
ff->char_data = saved_char_data;
return FT_Err_Unknown_File_Format;
}
/* If the buffer was too small enlarge it and try again. */
if (length > a_info->glyph_data_length) {
if (a_info->glyph_data) {
gs_free ((gs_memory_t *)a_info->fapi_font->memory, a_info->glyph_data, 0, 0, "get_fapi_glyph_data");
}
a_info->glyph_data = gs_malloc ((gs_memory_t *)a_info->fapi_font->memory, length, 1, "get_fapi_glyph_data");
if (!a_info->glyph_data) {
a_info->glyph_data_length = 0;
return FT_Err_Out_Of_Memory;
}
a_info->glyph_data_length = length;
ff->char_data = saved_char_data;
length = ff->get_glyph(ff, a_index, a_info->glyph_data, length);
if (length == -1)
return FT_Err_Unknown_File_Format;
}
/* Set the returned pointer and length. */
a_data->pointer = a_info->glyph_data;
a_info->glyph_data_in_use = true;
}
a_data->length = length;
return 0;
}
static void
free_fapi_glyph_data(FT_Incremental a_info, FT_Data *a_data)
{
if (a_data->pointer == (const FT_Byte*)a_info->glyph_data)
a_info->glyph_data_in_use = false;
else
gs_free((gs_memory_t *)a_info->fapi_font->memory, (FT_Byte*)a_data->pointer, 0, 0, "free_fapi_glyph_data");
}
static FT_Error
get_fapi_glyph_metrics(FT_Incremental a_info, FT_UInt a_glyph_index,
FT_Bool bVertical, FT_Incremental_MetricsRec *a_metrics)
{
/* FreeType will create synthetic vertical metrics, including a vertical
* advance, if none is present. We don't want this, so if the font uses Truetype outlines
* and the WMode is not 1 (vertical) we ignore the advance by setting it to 0
*/
if (bVertical && !a_info->fapi_font->is_type1)
a_metrics->advance = 0;
if (a_info->glyph_metrics_index == a_glyph_index)
{
switch (a_info->metrics_type)
{
case FAPI_METRICS_ADD:
a_metrics->advance += a_info->glyph_metrics.advance;
break;
case FAPI_METRICS_REPLACE_WIDTH:
a_metrics->advance = a_info->glyph_metrics.advance;
break;
case FAPI_METRICS_REPLACE:
*a_metrics = a_info->glyph_metrics;
/* We are replacing the horizontal metrics, so the vertical must be 0 */
a_metrics->advance_v = 0;
break;
default:
/* This can't happen. */
return FT_Err_Invalid_Argument;
}
}
return 0;
}
static const
FT_Incremental_FuncsRec TheFAPIIncrementalInterfaceFuncs =
{
get_fapi_glyph_data,
free_fapi_glyph_data,
get_fapi_glyph_metrics
};
static FT_Incremental_InterfaceRec *
new_inc_int(FAPI_server *a_server, FAPI_font *a_fapi_font)
{
FF_server *s = (FF_server*)a_server;
FT_Incremental_InterfaceRec *i =
(FT_Incremental_InterfaceRec*) FF_alloc(s->ftmemory, sizeof(FT_Incremental_InterfaceRec));
if (i)
{
i->object = (FT_Incremental)new_inc_int_info(a_server, a_fapi_font);
i->funcs = &TheFAPIIncrementalInterfaceFuncs;
}
if (!i->object)
{
FF_free(s->ftmemory, i);
i = NULL;
}
return i;
}
static void
delete_inc_int(FAPI_server *a_server, FT_Incremental_InterfaceRec *a_inc_int)
{
FF_server *s = (FF_server*)a_server;
if (a_inc_int)
{
delete_inc_int_info(a_server, a_inc_int->object);
FF_free(s->ftmemory, a_inc_int);
}
}
/* Convert FreeType error codes to GhostScript ones.
* Very rudimentary because most don't correspond.
*/
static int
ft_to_gs_error(FT_Error a_error)
{
if (a_error)
{
if (a_error == FT_Err_Out_Of_Memory)
return e_VMerror;
else
return e_unknownerror;
}
return 0;
}
/* Load a glyph and optionally rasterize it. Return its metrics in a_metrics.
* If a_bitmap is true convert the glyph to a bitmap.
*/
static FAPI_retcode
load_glyph(FAPI_server *a_server, FAPI_font *a_fapi_font, const FAPI_char_ref *a_char_ref,
FAPI_metrics *a_metrics, FT_Glyph *a_glyph, bool a_bitmap, int max_bitmap)
{
FF_server *s = (FF_server*)a_server;
FT_Error ft_error = 0;
FT_Error ft_error_fb = 1;
FF_face *face = (FF_face*)a_fapi_font->server_font_data;
FT_Face ft_face = face->ft_face;
int index = a_char_ref->char_code;
FT_Long w;
FT_Long h;
FT_Long fflags;
/* Save a_fapi_font->char_data, which is set to null by FAPI_FF_get_glyph as part of a hack to
* make the deprecated Type 2 endchar ('seac') work, so that it can be restored
* after the first call to FT_Load_Glyph.
*/
const void *saved_char_data = a_fapi_font->char_data;
const int saved_char_data_len = a_fapi_font->char_data_len;
if (s->bitmap_glyph) {
FT_Bitmap_Done (s->freetype_library, &s->bitmap_glyph->bitmap);
FF_free(s->ftmemory, s->bitmap_glyph);
s->bitmap_glyph = NULL;
}
if (s->outline_glyph) {
FT_Outline_Done (s->freetype_library, &s->outline_glyph->outline);
FF_free(s->ftmemory, s->outline_glyph);
s->outline_glyph = NULL;
}
if (!a_char_ref->is_glyph_index)
{
if (ft_face->num_charmaps)
index = FT_Get_Char_Index(ft_face, index);
else
{
/* If there are no character maps and no glyph index, loading the glyph will still work
* properly if both glyph data and metrics are supplied by the incremental interface.
* In that case we use a dummy glyph index which will be passed
* back to FAPI_FF_get_glyph by get_fapi_glyph_data.
*
* Type 1 fonts don't use the code and can appear to FreeType to have only one glyph,
* so we have to set the index to 0.
*
* For other font types, FAPI_FF_get_glyph requires the character code
* when getting data.
*/
if (a_fapi_font->is_type1)
index = 0;
else
index = a_char_ref->char_code;
}
}
/* Refresh the pointer to the FAPI_font held by the incremental interface. */
if (face->ft_inc_int)
face->ft_inc_int->object->fapi_font = a_fapi_font;
/* Store the overriding metrics if they have been supplied. */
if (face->ft_inc_int && a_char_ref->metrics_type != FAPI_METRICS_NOTDEF)
{
FT_Incremental_MetricsRec *m = &face->ft_inc_int->object->glyph_metrics;
m->bearing_x = a_char_ref->sb_x >> 16;
m->bearing_y = a_char_ref->sb_y >> 16;
m->advance = a_char_ref->aw_x >> 16;
face->ft_inc_int->object->glyph_metrics_index = index;
face->ft_inc_int->object->metrics_type = a_char_ref->metrics_type;
}
else
if (face->ft_inc_int)
/* Make sure we don't leave this set to the last value, as we may then use inappropriate metrics values */
face->ft_inc_int->object->glyph_metrics_index = 0xFFFFFFFF;
/* We have to load the glyph, scale it correctly, and render it if we need a bitmap. */
if (!ft_error)
{
/* We disable loading bitmaps because if we allow it then FreeType invents metrics for them, which messes up our glyph positioning */
/* Also the bitmaps tend to look somewhat different (though more readable) than FreeType's rendering. By disabling them we */
/* maintain consistency better. (FT_LOAD_NO_BITMAP) */
a_fapi_font->char_data = saved_char_data;
if (!a_fapi_font->is_type1)
ft_error = FT_Load_Glyph(ft_face, index, FT_LOAD_MONOCHROME | FT_LOAD_NO_BITMAP | FT_LOAD_LINEAR_DESIGN);
else {
/* Current FreeType hinting for type 1 fonts is so poor we are actually better off without it (fewer files render incorrectly) (FT_LOAD_NO_HINTING) */
ft_error = FT_Load_Glyph(ft_face, index, FT_LOAD_MONOCHROME | FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP | FT_LOAD_LINEAR_DESIGN);
if (ft_error == FT_Err_Unknown_File_Format)
return index+1;
}
}
if (ft_error == FT_Err_Invalid_Argument || ft_error == FT_Err_Invalid_Glyph_Index
|| (ft_error >= FT_Err_Invalid_Opcode && ft_error <= FT_Err_Too_Many_Instruction_Defs)) {
a_fapi_font->char_data = saved_char_data;
/* We want to prevent hinting, even for a "tricky" font - it shouldn't matter for the notdef */
fflags = ft_face->face_flags;
ft_face->face_flags &= ~FT_FACE_FLAG_TRICKY;
ft_error = FT_Load_Glyph(ft_face, index, FT_LOAD_MONOCHROME | FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP | FT_LOAD_LINEAR_DESIGN);
ft_face->face_flags = fflags;
}
if (ft_error == FT_Err_Out_Of_Memory || ft_error == FT_Err_Array_Too_Large) {
return(e_VMerror);
}
/* If FT gives us an error, try to fall back to the notdef - if that doesn't work, we'll throw an error over to Ghostscript */
if (ft_error) {
a_fapi_font->char_data = (void *)".notdef";
a_fapi_font->char_data_len = 7;
/* We want to prevent hinting, even for a "tricky" font - it shouldn't matter for the notdef */
fflags = ft_face->face_flags;
ft_face->face_flags &= ~FT_FACE_FLAG_TRICKY;
ft_error_fb = FT_Load_Glyph(ft_face, 0, FT_LOAD_MONOCHROME | FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP | FT_LOAD_LINEAR_DESIGN);
ft_face->face_flags = fflags;
a_fapi_font->char_data = saved_char_data;
a_fapi_font->char_data_len = saved_char_data_len;
}
/* Previously we interpreted the glyph unscaled, and derived the metrics from that. Now we only interpret it
* once, and work out the metrics from the scaled/hinted outline.
*/
if ((!ft_error || !ft_error_fb) && a_metrics)
{
FT_Long hx;
FT_Long hy;
FT_Long vadv;
/* In order to get the metrics in the form we need them, we have to remove the size scaling
* the resolution scaling, and convert to points.
*/
hx = (FT_Long)(((double)ft_face->glyph->metrics.horiBearingX * ft_face->units_per_EM * 72.0) / ((double)face->width * face->horz_res));
hy = (FT_Long)(((double)ft_face->glyph->metrics.horiBearingY * ft_face->units_per_EM * 72.0) / ((double)face->height * face->vert_res));
w = (FT_Long)(((double)ft_face->glyph->metrics.width * ft_face->units_per_EM * 72.0) / ((double)face->width * face->horz_res));
h = (FT_Long)(((double)ft_face->glyph->metrics.height * ft_face->units_per_EM * 72.0) / ((double)face->height * face->vert_res));
/* Ugly. FreeType creates verticla metrics for TT fonts, normally we override them in the
* metrics callbacks, but those only work for incremental interface fonts, and TrueType fonts
* loaded as CIDFont replacements are not incrementally handled. So here, if its a CIDFont, and
* its not type 1 outlines, and its not a vertical mode fotn, ignore the advance.
*/
if(!a_fapi_font->is_type1 && a_fapi_font->is_cid && !a_fapi_font->is_vertical)
vadv = 0;
else
vadv = ft_face->glyph->linearVertAdvance;
a_metrics->bbox_x0 = hx;
a_metrics->bbox_y0 = hy - h;
a_metrics->bbox_x1 = a_metrics->bbox_x0 + w;
a_metrics->bbox_y1 = a_metrics->bbox_y0 + h;
a_metrics->escapement = ft_face->glyph->linearHoriAdvance;
a_metrics->v_escapement = vadv;
a_metrics->em_x = ft_face->units_per_EM;
a_metrics->em_y = ft_face->units_per_EM;
}
if ((!ft_error || !ft_error_fb) && a_bitmap == true) {
FT_BBox cbox;
/* compute the control box, and grid fit it - lifted from ft_raster1_render() */
FT_Outline_Get_CBox(&ft_face->glyph->outline,&cbox);
/* These round operations are only to preserve behaviour compared to the 9.00 release
which used the bitmap dimensions as calculated by Freetype.
But FT_PIX_FLOOR/FT_PIX_CEIL aren't public.
*/
cbox.xMin = ((cbox.xMin) & ~63); /* FT_PIX_FLOOR( cbox.xMin ) */
cbox.yMin = ((cbox.yMin) & ~63);
cbox.xMax = (((cbox.xMax) + 63) & ~63);
cbox.yMax = (((cbox.yMax) + 63) & ~63); /* FT_PIX_CEIL( cbox.yMax ) */
w = (FT_UInt)(( cbox.xMax - cbox.xMin ) >> 6 );
h = (FT_UInt)(( cbox.yMax - cbox.yMin ) >> 6 );
if (ft_face->glyph->format != FT_GLYPH_FORMAT_BITMAP && ft_face->glyph->format != FT_GLYPH_FORMAT_COMPOSITE) {
if ((bitmap_raster(w) * h) < max_bitmap) {
FT_Render_Mode mode = FT_RENDER_MODE_MONO;
ft_error = FT_Render_Glyph(ft_face->glyph, mode);
}
else {
(*a_glyph) = NULL;
return(e_VMerror);
}
}
}
if ((!ft_error || !ft_error_fb) && a_glyph) {
ft_error = FT_Get_Glyph(ft_face->glyph, a_glyph);
}
else {
if (ft_face->glyph->format == FT_GLYPH_FORMAT_BITMAP) {
FT_BitmapGlyph bmg;
ft_error = FT_Get_Glyph(ft_face->glyph, (FT_Glyph *)&bmg);
if (!ft_error) {
FT_Bitmap_Done (s->freetype_library, &bmg->bitmap);
FF_free(s->ftmemory, bmg);
}
}
else {
FT_OutlineGlyph olg;
ft_error = FT_Get_Glyph(ft_face->glyph, (FT_Glyph *)&olg);
if (!ft_error) {
FT_Outline_Done (s->freetype_library, &olg->outline);
FF_free(s->ftmemory, olg);
}
}
}
if (ft_error == FT_Err_Too_Many_Hints) {
#ifdef DEBUG
if (gs_debug_c('1')) {
emprintf1(a_fapi_font->memory,
"TrueType glyph %d uses more instructions than the declared maximum in the font.",
a_char_ref->char_code);
if (!ft_error_fb) {
emprintf(a_fapi_font->memory, " Continuing, falling back to notdef\n\n");
}
}
#endif
if (!ft_error_fb) ft_error = 0;
}
if (ft_error == FT_Err_Invalid_Argument) {
#ifdef DEBUG
if (gs_debug_c('1')) {
emprintf1(a_fapi_font->memory,
"TrueType parsing error in glyph %d in the font.",
a_char_ref->char_code);
if (!ft_error_fb) {
emprintf(a_fapi_font->memory, " Continuing, falling back to notdef\n\n");
}
}
#endif
if (!ft_error_fb) ft_error = 0;
}
if (ft_error == FT_Err_Too_Many_Function_Defs) {
#ifdef DEBUG
if (gs_debug_c('1')) {
emprintf1(a_fapi_font->memory,
"TrueType instruction error in glyph %d in the font.",
a_char_ref->char_code);
if (!ft_error_fb) {
emprintf(a_fapi_font->memory, " Continuing, falling back to notdef\n\n");
}
}
#endif
if (!ft_error_fb) ft_error = 0;
}
if (ft_error == FT_Err_Invalid_Glyph_Index) {
#ifdef DEBUG
if (gs_debug_c('1')) {
emprintf1(a_fapi_font->memory,
"FreeType is unable to find the glyph %d in the font.",
a_char_ref->char_code);
if (!ft_error_fb) {
emprintf(a_fapi_font->memory, " Continuing, falling back to notdef\n\n");
}
}
#endif
if (!ft_error_fb) ft_error = 0;
}
return ft_to_gs_error(ft_error);
}
/*
* Ensure that the rasterizer is open.
*
* In the case of FreeType this means creating the FreeType library object.
*/
static FAPI_retcode
ensure_open(FAPI_server *a_server, const byte *server_param, int server_param_size)
{
FF_server *s = (FF_server*)a_server;
if (!s->freetype_library)
{
FT_Error ft_error;
/* As we want FT to use our memory management, we cannot use the convenience of
* FT_Init_FreeType(), we have to do each stage "manually"
*/
s->ftmemory->user = s->mem;
s->ftmemory->alloc = FF_alloc;
s->ftmemory->free = FF_free;
s->ftmemory->realloc = FF_realloc;
ft_error = FT_New_Library(s->ftmemory, &s->freetype_library);
if (ft_error) {
gs_free (s->mem, s->ftmemory, 0, 0, "ensure_open");
}
else {
FT_Add_Default_Modules(s->freetype_library);
}
if (ft_error)
return ft_to_gs_error(ft_error);
}
return 0;
}
#if 0 /* Not currently used */
static void
transform_concat(FT_Matrix *a_A, const FT_Matrix *a_B)
{
FT_Matrix result = *a_B;
FT_Matrix_Multiply(a_A, &result);
*a_A = result;
}
/* Create a transform representing an angle defined as a vector. */
static void
make_rotation(FT_Matrix *a_transform, const FT_Vector *a_vector)
{
FT_Fixed length, cos, sin;
if (a_vector->x >= 0 && a_vector->y == 0)
{
a_transform->xx = a_transform->yy = 65536;
a_transform->xy = a_transform->yx = 0;
return;
}
length = FT_Vector_Length((FT_Vector*)a_vector);
cos = FT_DivFix(a_vector->x, length);
sin = FT_DivFix(a_vector->y, length);
a_transform->xx = a_transform->yy = cos;
a_transform->xy = -sin;
a_transform->yx = sin;
}
#endif /* Not currently used */
/* Divide a transformation into a scaling part and a rotation-and-shear part.
* The scaling part is used for setting the pixel size for hinting.
*/
static void
transform_decompose(FT_Matrix *a_transform, FT_UInt *xresp, FT_UInt *yresp,
FT_Fixed *a_x_scale, FT_Fixed *a_y_scale)
{
double scalex, scaley, fact = 1.0;
double factx = 1.0, facty = 1.0;
FT_Matrix ftscale_mat;
FT_UInt xres;
FT_UInt yres;
bool indep_scale;
scalex = hypot ((double)a_transform->xx, (double)a_transform->xy);
scaley = hypot ((double)a_transform->yx, (double)a_transform->yy);
if (*xresp != *yresp) {
/* To get good results, we have to pull the implicit scaling from
* non-square resolutions, and apply it in the matrix. This means
* we get the correct "shearing" effect for rotated glyphs.
* The previous solution was only effective for for glyphs whose
* axes were coincident with the axes of the page.
*/
bool use_x = true;
if (*xresp < *yresp) {
use_x = false;
}
ftscale_mat.xx = (int)(((double)(*xresp) / ((double)(use_x ? (*xresp) : (*yresp)))) * 65536);
ftscale_mat.xy = ftscale_mat.yx = 0;
ftscale_mat.yy = (int)(((double)(*yresp) / ((double)(use_x ? (*xresp) : (*yresp)))) * 65536);
FT_Matrix_Multiply (&ftscale_mat, a_transform);
xres = yres = (use_x ? (*xresp) : (*yresp));
}
else {
/* Life is considerably easier when square resolutions are in use! */
xres = *xresp;
yres = *yresp;
}
/*
* If the x and y scales differ by more than a factor of 512, we
* manipulate them independently. As the difference between magnitudes
* of the x and y scales tends towards 1000 we start to run out of
* accuracy and magnitude in the FT fixed point representation.
* As these are scaled fixed point values, we should be safe forcing
* them into integer operations.
*/
indep_scale = (((((int)scalex) / ((int)scaley)) > 512) || ((((int)scaley) / ((int)scalex)) > 512));
scalex *= 1.0/65536.0;
scaley *= 1.0/65536.0;
/* FT clamps the width and height to a lower limit of 1.0 units
* (note: as FT stores it in 64ths of a unit, that is 64)
* So if either the width or the height are <1.0 here, we scale
* the width and height appropriately, and then compensate using
* the "final" matrix for FT
*/
/* We use 1 1/64th to calculate the scale, so that we *guarantee* the
* scalex/y we calculate will be >64 after rounding.
*/
/* It turns out that pdfwrite uses a unit matrix for some/many/all of
* its nefarious needs, this causes small values to round to zero in
* some of Freetype's code, which can result in glyph metrics (height,
* width etc) being falsely recorded as zero.
* Raise the scale factor of what we consider a "small" glyph by an
* order of magnitude to keep pdfwrite happy - note this doesn't
* affect the ultimate size of the glyph since we recalculate the
* final scale matrix to suit below.
*/
if (indep_scale) {
if (scaley < 10.0) {
facty = 10.016 / scaley;
scaley = scaley * facty;
}
/* These seemingly arbitrary numbers are derived from a) using 64ths
of a unit and b) the calculations done in FT_Request_Metrics() to
derive the ppem. This is necessary due to FT's need for them ppem
to be an in larger than 1 - see tt_size_reset().
The calculation has been rearranged to reduce (in particular) the
number of floating point divisions.
*/
if (scaley * yres < 2268.0/64.0) {
facty = (2400.0/64.0) / (yres * scaley);
scaley *= facty;
}
/* We also have to watch for variable overflow in Freetype.
* We fiddle with whichever of the resolution or the scale
* is larger for the current iteration, but change the scale
* by a smaller multiple, firstly because it is a floating point
* value, so we can, but also because varying the scale by larger
* amounts is more prone to causing rounding errors.
*/
facty = 1.0;
while (scaley * yres > 512.0 * 72 && yres > 0 && scaley > 0.0) {
if (scaley < yres) {
yres >>= 1;
facty *= 2.0;
}
else {
scaley /= 1.25;
}
}
if (scalex < 10.0) {
factx = 10.016 / scalex;
scalex = scalex * factx;
}
/* see above */
if (scalex * xres < 2268.0/64.0) {
factx = (2400.0/64.0) / (xres * scalex);
scalex *= factx;
}
/* see above */
factx = 1.0;
while (scalex * xres > 512.0 * 72.0 && xres > 0 && scalex > 0.0) {
if (scalex < xres) {
xres >>= 1;
factx *= 2.0;
}
else {
scalex /= 1.25;
}
}
}
else {
/*
* But we prefer to scale both axes together, as the results are
* more accurate.
*/
if (scalex > scaley) {
if (scaley < 10.0) {
fact = 10.016 / scaley;
scaley = scaley * fact;
scalex = scalex * fact;
}
/* These seemingly arbitrary numbers are derived from a) using 64ths
of a unit and b) the calculations done in FT_Request_Metrics() to
derive the ppem. This is necessary due to FT's need for them ppem
to be an in larger than 1 - see tt_size_reset().
The calculation has been rearranged to reduce (in particular) the
number of floating point divisions.
*/
if (scaley * yres < 2268.0/64.0) {
fact = (2400.0/64.0) / (yres * scaley);
scaley *= fact;
scalex *= fact;
}
/* We also have to watch for variable overflow in Freetype.
* We fiddle with whichever of the resolution or the scale
* is larger for the current iteration.
*/
fact = 1.0;
while (scalex * xres > 512.0 * 72 && xres > 0 && yres > 0
&& (scalex > 0.0 && scaley > 0.0)) {
if (scalex < xres) {
xres >>= 1;
yres >>= 1;
fact *= 2.0;
}
else {
scalex /= 1.25;
scaley /= 1.25;
}
}
}
else {
if (scalex < 10.0) {
fact = 10.016 / scalex;
scalex = scalex * fact;
scaley = scaley * fact;
}
/* see above */
if (scalex * xres < 2268.0/64.0) {
fact = (2400.0/64.0) / (xres * scalex);
scaley *= fact;
scalex *= fact;
}
/* see above */
fact = 1.0;
while (scaley * yres > 512.0 * 72.0 && (xres > 0 && yres > 0)
&& (scalex > 0.0 && scaley > 0.0)) {
if (scaley < yres) {
xres >>= 1;
yres >>= 1;
fact *= 2.0;
}
else {
scalex /= 1.25;
scaley /= 1.25;
}
}
}
factx = facty = fact;
}
ftscale_mat.xx = (FT_Fixed)((65536.0 / scalex) * factx);
ftscale_mat.xy = 0;
ftscale_mat.yx = 0;
ftscale_mat.yy = (FT_Fixed)((65536.0 / scaley) * facty);
FT_Matrix_Multiply (a_transform, &ftscale_mat);
memcpy(a_transform, &ftscale_mat, sizeof(FT_Matrix));
*xresp = xres;
*yresp = yres;
/* Return values ready scaled for FT */
*a_x_scale = (FT_Fixed)(scalex * 64);
*a_y_scale = (FT_Fixed)(scaley * 64);
}
/*
* Open a font and set its size.
*/
static FAPI_retcode
get_scaled_font(FAPI_server *a_server, FAPI_font *a_font,
const FAPI_font_scale *a_font_scale,
const char *a_map,
FAPI_descendant_code a_descendant_code)
{
FF_server *s = (FF_server*)a_server;
FF_face *face = (FF_face*)a_font->server_font_data;
FT_Error ft_error = 0;
if (s->bitmap_glyph) {
FT_Bitmap_Done (s->freetype_library, &s->bitmap_glyph->bitmap);
FF_free(s->ftmemory, s->bitmap_glyph);
s->bitmap_glyph = NULL;
}
if (s->outline_glyph) {
FT_Outline_Done (s->freetype_library, &s->outline_glyph->outline);
FF_free(s->ftmemory, s->outline_glyph);
s->outline_glyph = NULL;
}
/* dpf("get_scaled_font enter: is_type1=%d is_cid=%d font_file_path='%s' a_descendant_code=%d\n",
a_font->is_type1, a_font->is_cid, a_font->font_file_path ? a_font->font_file_path : "", a_descendant_code); */
/* If this font is the top level font of an embedded CID type 0 font (font type 9)
* do nothing. See the comment in FAPI_prepare_font. The descendant fonts are
* passed in individually.
*/
if (a_font->is_cid && a_font->is_type1 && a_font->font_file_path == NULL &&
(a_descendant_code == FAPI_TOPLEVEL_BEGIN ||
a_descendant_code == FAPI_TOPLEVEL_COMPLETE))
{
/* dpf("get_scaled_font return 0\n"); */
return 0;
}
/* Create the face if it doesn't already exist. */
if (!face)
{
FT_Face ft_face = NULL;
FT_Parameter ft_param;
FT_Incremental_InterfaceRec *ft_inc_int = NULL;
unsigned char *own_font_data = NULL;
FT_Stream ft_strm = NULL;
/* dpf("get_scaled_font creating face\n"); */
/* Load a typeface from a file. */
if (a_font->font_file_path)
{
FT_Open_Args args;
int code;
memset(&args, 0x00, sizeof(args));
if ((code = FF_open_read_stream ((gs_memory_t *)(s->ftmemory->user),
(char *)a_font->font_file_path, &ft_strm)) < 0){
return(code);
}
args.flags = FT_OPEN_STREAM;
args.stream = ft_strm;
ft_error = FT_Open_Face(s->freetype_library, &args, a_font->subfont, &ft_face);
if (!ft_error && ft_face)
ft_error = FT_Select_Charmap(ft_face, ft_encoding_unicode);
}
/* Load a typeface from a representation in GhostScript's memory. */
else
{
FT_Open_Args open_args;
open_args.flags = FT_OPEN_MEMORY;
if (a_font->is_type1)
{
long length;
int type = a_font->get_word(a_font, FAPI_FONT_FEATURE_FontType, 0);
/* Tell the FAPI interface that we need to decrypt the /Subrs data. */
a_font->need_decrypt = true;
/*
Serialise a type 1 font in PostScript source form, or
a Type 2 font in binary form, so that FreeType can read it.
*/
if (type == 1)
length = FF_serialize_type1_font(a_font, NULL, 0);
else
length = FF_serialize_type2_font(a_font, NULL, 0);
open_args.memory_base = own_font_data = FF_alloc(s->ftmemory, length);
if (!open_args.memory_base)
return e_VMerror;
if (type == 1)
open_args.memory_size = FF_serialize_type1_font(a_font, own_font_data, length);
else
open_args.memory_size = FF_serialize_type2_font(a_font, own_font_data, length);
if (open_args.memory_size != length)
return_error(e_unregistered); /* Must not happen. */
ft_inc_int = new_inc_int(a_server, a_font);
if (!ft_inc_int)
{
FF_free (s->ftmemory, own_font_data);
return e_VMerror;
}
}
/* It must be type 42 (see code in FAPI_FF_get_glyph in zfapi.c). */
else
{
/* Get the length of the TrueType data. */
open_args.memory_size = a_font->get_long(a_font, FAPI_FONT_FEATURE_TT_size, 0);
if (open_args.memory_size == 0)
return e_invalidfont;
/* Load the TrueType data into a single buffer. */
open_args.memory_base = own_font_data = FF_alloc(s->ftmemory, open_args.memory_size);
if (!own_font_data)
return e_VMerror;
if (a_font->serialize_tt_font(a_font, own_font_data, open_args.memory_size))
return e_invalidfont;
/* We always load incrementally. */
ft_inc_int = new_inc_int(a_server, a_font);
if (!ft_inc_int)
{
FF_free(s->ftmemory, own_font_data);
return e_VMerror;
}
}
if (ft_inc_int)
{
open_args.flags = (FT_UInt)(open_args.flags | FT_OPEN_PARAMS);
ft_param.tag = FT_PARAM_TAG_INCREMENTAL;
ft_param.data = ft_inc_int;
open_args.num_params = 1;
open_args.params = &ft_param;
}
ft_error = FT_Open_Face(s->freetype_library, &open_args, a_font->subfont, &ft_face);
}
if (ft_face)
{
face = new_face(a_server, ft_face, ft_inc_int, ft_strm, own_font_data);
if (!face)
{
FF_free(s->ftmemory, own_font_data);
FT_Done_Face(ft_face);
delete_inc_int(a_server, ft_inc_int);
return e_VMerror;
}
a_font->server_font_data = face;
}
else
a_font->server_font_data = NULL;
}
/* Set the point size and transformation.
* The matrix is scaled by the shift specified in the server, 16,
* so we divide by 65536 when converting to a gs_matrix.
*/
if (face)
{
/* Convert the GS transform into an FT transform.
* Ignore the translation elements because they contain very large values
* derived from the current transformation matrix and so are of no use.
*/
face->ft_transform.xx = a_font_scale->matrix[0];
face->ft_transform.xy = a_font_scale->matrix[2];
face->ft_transform.yx = a_font_scale->matrix[1];
face->ft_transform.yy = a_font_scale->matrix[3];
face->horz_res = a_font_scale->HWResolution[0] >> 16;
face->vert_res = a_font_scale->HWResolution[1] >> 16;
/* Split the transform into scale factors and a rotation-and-shear
* transform.
*/
transform_decompose(&face->ft_transform, &face->horz_res, &face->vert_res, &face->width, &face->height);
ft_error = FT_Set_Char_Size(face->ft_face, face->width, face->height,
face->horz_res, face->vert_res);
if (ft_error)
{
/* The code originally cleaned up the face data here, but the "top level"
font object still has references to the face data, and we've no way
to tell it it's gone. So we defer releasing the data until the garbage
collector collects the font object, and the font's finalize call will
free the data correctly for us.
*/
return ft_to_gs_error(ft_error);
}
/* Concatenate the transform to a reflection around (y=0) so that it
* produces a glyph that is upside down in FreeType terms, with its
* first row at the bottom. That is what GhostScript needs.
*/
FT_Set_Transform(face->ft_face, &face->ft_transform, NULL);
}
/* dpf("get_scaled_font return %d\n", a_font->server_font_data ? 0 : -1); */
return a_font->server_font_data ? 0 : -1;
}
/*
* Return the name of a resource which maps names to character codes. Do this
* by setting a_decoding_id to point to a null-terminated string. The resource
* is in the 'decoding' directory in the directory named by /GenericResourceDir
* in lib/gs_res.ps.
*/
static FAPI_retcode
get_decodingID(FAPI_server *a_server, FAPI_font *a_font, const char** a_decoding_id)
{
*a_decoding_id = "Unicode";
return 0;
}
/*
* Get the font bounding box in font units.
*/
static FAPI_retcode
get_font_bbox(FAPI_server *a_server, FAPI_font *a_font, int a_box[4])
{
FF_face *face = (FF_face*)a_font->server_font_data;
a_box[0] = face->ft_face->bbox.xMin;
a_box[1] = face->ft_face->bbox.yMin;
a_box[2] = face->ft_face->bbox.xMax;
a_box[3] = face->ft_face->bbox.yMax;
return 0;
}
/*
* Return a boolean value in a_proportional stating whether the font is proportional
* or fixed-width.
*/
static FAPI_retcode
get_font_proportional_feature(FAPI_server *a_server, FAPI_font *a_font, bool *a_proportional)
{
*a_proportional = true;
return 0;
}
/* Convert the character name in a_char_ref.char_name to a character code or
* glyph index and put it in a_char_ref.char_code, setting
* a_char_ref.is_glyph_index as appropriate. If this is possible set a_result
* to true, otherwise set it to false. The return value is a standard error
* return code.
*/
static FAPI_retcode
can_retrieve_char_by_name(FAPI_server *a_server, FAPI_font *a_font, FAPI_char_ref *a_char_ref, bool *a_result)
{
FF_face *face = (FF_face*)a_font->server_font_data;
char name[128];
if (FT_HAS_GLYPH_NAMES(face->ft_face) && a_char_ref->char_name_length < sizeof(name))
{
memcpy(name, a_char_ref->char_name, a_char_ref->char_name_length);
name[a_char_ref->char_name_length] = 0;
a_char_ref->char_code = FT_Get_Name_Index(face->ft_face, name);
*a_result = a_char_ref->char_code != 0;
if (*a_result)
a_char_ref->is_glyph_index = true;
}
else
*a_result = false;
return 0;
}
/*
* Return non-zero if the metrics can be replaced.
*/
static FAPI_retcode
can_replace_metrics(FAPI_server *a_server, FAPI_font *a_font, FAPI_char_ref *a_char_ref, int *a_result)
{
/* Replace metrics only if the metrics are supplied in font units. */
*a_result = 1;
return 0;
}
/*
* Retrieve the metrics of a_char_ref and put them in a_metrics.
*/
static FAPI_retcode
get_char_width(FAPI_server *a_server, FAPI_font *a_font, FAPI_char_ref *a_char_ref, FAPI_metrics *a_metrics)
{
FF_server *s = (FF_server*)a_server;
return load_glyph(a_server, a_font, a_char_ref, a_metrics,
(FT_Glyph*)&s->outline_glyph,
false, a_server->max_bitmap);
}
static FAPI_retcode get_fontmatrix(FAPI_server *server, gs_matrix *m)
{
m->xx = 1.0;
m->xy = 0.0;
m->yx = 0.0;
m->yy = 1.0;
m->tx = 0.0;
m->ty = 0.0;
return 0;
}
/*
* Rasterize the character a_char and return its metrics. Do not return the
* bitmap but store this. It can be retrieved by a subsequent call to
* get_char_raster.
*/
static FAPI_retcode
get_char_raster_metrics(FAPI_server *a_server, FAPI_font *a_font,
FAPI_char_ref *a_char_ref, FAPI_metrics *a_metrics)
{
FF_server *s = (FF_server*)a_server;
FAPI_retcode error = load_glyph(a_server, a_font, a_char_ref, a_metrics,
(FT_Glyph*)&s->bitmap_glyph, true, a_server->max_bitmap);
return error;
}
/*
* Return the bitmap created by the last call to get_char_raster_metrics.
*/
static FAPI_retcode
get_char_raster(FAPI_server *a_server, FAPI_raster *a_raster)
{
FF_server *s = (FF_server*)a_server;
if (!s->bitmap_glyph)
return_error(e_unregistered); /* Must not happen. */
a_raster->p = s->bitmap_glyph->bitmap.buffer;
a_raster->width = s->bitmap_glyph->bitmap.width;
a_raster->height = s->bitmap_glyph->bitmap.rows;
a_raster->line_step = s->bitmap_glyph->bitmap.pitch;
a_raster->orig_x = s->bitmap_glyph->left * 16;
a_raster->orig_y = s->bitmap_glyph->top * 16;
a_raster->left_indent = a_raster->top_indent = a_raster->black_height = a_raster->black_width = 0;
return 0;
}
/*
* Create an outline for the character a_char and return its metrics. Do not
* return the outline but store this.
* It can be retrieved by a subsequent call to get_char_outline.
*/
static FAPI_retcode
get_char_outline_metrics(FAPI_server *a_server, FAPI_font *a_font,
FAPI_char_ref *a_char_ref, FAPI_metrics *a_metrics)
{
FF_server *s = (FF_server*)a_server;
return load_glyph(a_server, a_font, a_char_ref, a_metrics,
(FT_Glyph*)&s->outline_glyph, false, a_server->max_bitmap);
}
typedef struct FF_path_info_s
{
FAPI_path *path;
int64_t x;
int64_t y;
} FF_path_info;
static int move_to(const FT_Vector *aTo, void *aObject)
{
FF_path_info *p = (FF_path_info*)aObject;
/* FAPI expects that co-ordinates will be as implied by frac_shift
* in our case 16.16 fixed precision. True for 'low level' FT
* routines (apparently), it isn't true for these routines where
* FT returns a 26.6 format. Rescale to 16.16 so that FAPI will
* be able to convert to GS co-ordinates properly.
*/
/* FAPI now expects these coordinates in 32.32 */
p->x = ((int64_t)aTo->x) << 26;
p->y = ((int64_t)aTo->y) << 26;
return p->path->moveto(p->path, p->x, p->y) ? -1 : 0;
}
static int line_to(const FT_Vector *aTo, void *aObject)
{
FF_path_info *p = (FF_path_info*)aObject;
/* See move_to() above */
p->x = ((int64_t)aTo->x) << 26;
p->y = ((int64_t)aTo->y) << 26;
return p->path->lineto(p->path, p->x, p->y) ? -1 : 0;
}
static int conic_to(const FT_Vector *aControl, const FT_Vector *aTo, void *aObject)
{
FF_path_info *p = (FF_path_info*)aObject;
floatp x, y, Controlx, Controly;
int64_t Control1x, Control1y, Control2x, Control2y;
floatp sx, sy;
/* More complivated than above, we need to do arithmetic on the
* co-ordinates, so we want them as floats and we will convert the
* result into 16.16 fixed precision for FAPI
*
* NB this code is funcitonally the same as the original, but I don't believe
* the comment (below) to be what the code is actually doing....
*
* NB2: the comment below was wrong, even though the code was correct(!!)
* The comment has now been amended.
*
* Convert a quadratic spline to a cubic. Do this by changing the three points
* A, B and C to A, 2/3(B,A), 2/3(B,C), C - that is, the two cubic control points are
* a third of the way from the single quadratic control point to the end points. This
* gives the same curve as the original quadratic.
*/
sx = (floatp)(p->x >> 32);
sy = (floatp)(p->y >> 32);
x = aTo->x / 64.0;
p->x = ((int64_t)float2fixed(x)) << 24;
y = aTo->y / 64.0;
p->y = ((int64_t)float2fixed(y)) << 24;
Controlx = aControl->x / 64.0;
Controly = aControl->y / 64.0;
Control1x = ((int64_t)float2fixed((sx + Controlx * 2) / 3)) << 24;
Control1y = ((int64_t)float2fixed((sy + Controly * 2) / 3)) << 24;
Control2x = ((int64_t)float2fixed((x + Controlx * 2) / 3)) << 24;
Control2y = ((int64_t)float2fixed((y + Controly * 2) / 3)) << 24;
return p->path->curveto(p->path, Control1x,
Control1y,
Control2x,
Control2y,
p->x, p->y) ? -1 : 0;
}
static int cubic_to(const FT_Vector *aControl1, const FT_Vector *aControl2, const FT_Vector *aTo, void *aObject)
{
FF_path_info *p = (FF_path_info*)aObject;
int64_t Control1x, Control1y, Control2x, Control2y;
/* See move_to() above */
p->x = ((int64_t)aTo->x) << 26;
p->y = ((int64_t)aTo->y) << 26;
Control1x = ((int64_t)aControl1->x) << 26;
Control1y = ((int64_t)aControl1->y) << 26;
Control2x = ((int64_t)aControl2->x) << 26;
Control2y = ((int64_t)aControl2->y) << 26;
return p->path->curveto(p->path, Control1x, Control1y, Control2x, Control2y, p->x, p->y) ? -1 : 0;
p->x = aTo->x;
p->y = aTo->y;
return p->path->curveto(p->path, aControl1->x, aControl1->y, aControl2->x, aControl2->y, aTo->x, aTo->y) ? -1 : 0;
}
static const FT_Outline_Funcs TheFtOutlineFuncs =
{
move_to,
line_to,
conic_to,
cubic_to,
0,
0
};
/*
* Return the outline created by the last call to get_char_outline_metrics.
*/
static FAPI_retcode
get_char_outline(FAPI_server *a_server, FAPI_path *a_path)
{
FF_server *s = (FF_server*)a_server;
FF_path_info p;
FT_Error ft_error = 0;
p.path = a_path;
p.x = 0;
p.y = 0;
ft_error = FT_Outline_Decompose(&s->outline_glyph->outline, &TheFtOutlineFuncs, &p);
if (a_path->gs_error == 0)
a_path->closepath(a_path);
return ft_to_gs_error(ft_error);
}
static FAPI_retcode release_char_data(FAPI_server *a_server)
{
FF_server *s = (FF_server*)a_server;
if (s->outline_glyph) {
FT_Outline_Done (s->freetype_library, &s->outline_glyph->outline);
FF_free(s->ftmemory, s->outline_glyph);
}
if (s->bitmap_glyph) {
FT_Bitmap_Done (s->freetype_library, &s->bitmap_glyph->bitmap);
FF_free(s->ftmemory, s->bitmap_glyph);
}
s->outline_glyph = NULL;
s->bitmap_glyph = NULL;
return 0;
}
static FAPI_retcode
release_typeface(FAPI_server *a_server, void *a_server_font_data)
{
FF_face *face = (FF_face*)a_server_font_data;
delete_face(a_server, face);
return 0;
}
static FAPI_retcode
check_cmap_for_GID(FAPI_server *server, uint *index)
{
FF_face *face = (FF_face*)(server->ff.server_font_data);
FT_Face ft_face = face->ft_face;
*index = FT_Get_Char_Index(ft_face, *index);
return 0;
}
static void gs_freetype_destroy(i_plugin_instance *a_instance, i_plugin_client_memory *a_memory);
static const i_plugin_descriptor TheFreeTypeDescriptor =
{
"FAPI",
"FreeType",
gs_freetype_destroy
};
static const FAPI_server TheFreeTypeServer =
{
{ &TheFreeTypeDescriptor },
16, /* frac_shift */
{gs_no_id},
{0},
0,
false,
{1, 0, 0, 1, 0, 0},
ensure_open,
get_scaled_font,
get_decodingID,
get_font_bbox,
get_font_proportional_feature,
can_retrieve_char_by_name,
can_replace_metrics,
get_fontmatrix,
get_char_width,
get_char_raster_metrics,
get_char_raster,
get_char_outline_metrics,
get_char_outline,
release_char_data,
release_typeface,
check_cmap_for_GID
};
plugin_instantiation_proc(gs_fapi_ft_instantiate);
int gs_fapi_ft_instantiate( i_plugin_client_memory *a_memory, i_plugin_instance **a_plugin_instance)
{
FF_server *server = (FF_server*) a_memory->alloc(a_memory, sizeof (FF_server), "FF_server");
int code;
if (!server)
return e_VMerror;
memset(server, 0, sizeof(*server));
code = gs_memory_chunk_wrap(&(server->mem), a_memory->client_data);
if (code != 0) {
return(code);
}
server->fapi_server = TheFreeTypeServer;
server->ftmemory = (FT_Memory)(&(server->ftmemory_rec));
*a_plugin_instance = &server->fapi_server.ig;
return 0;
}
static void gs_freetype_destroy(i_plugin_instance *a_plugin_instance, i_plugin_client_memory *a_memory)
{
FF_server *server = (FF_server *)a_plugin_instance;
FT_Done_Glyph(&server->outline_glyph->root);
FT_Done_Glyph(&server->bitmap_glyph->root);
/* As with initialization: since we're supplying memory management to
* FT, we cannot just to use FT_Done_FreeType (), we have to use
* FT_Done_Library () and then discard the memory ourselves
*/
FT_Done_Library(server->freetype_library);
gs_memory_chunk_release (server->mem);
a_memory->free(a_memory, server, "FF_server");
}
|