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
|
/*
* Modified for use within matplotlib
* 5 July 2007
* Michael Droettboom
*/
/*
** ~ppr/src/pprdrv/pprdrv_tt2.c
** Copyright 1995, Trinity College Computing Center.
** Written by David Chappell.
**
** Permission to use, copy, modify, and distribute this software and its
** documentation for any purpose and without fee is hereby granted, provided
** that the above copyright notice appear in all copies and that both that
** copyright notice and this permission notice appear in supporting
** documentation. This software is provided "as is" without express or
** implied warranty.
**
** TrueType font support. These functions allow PPR to generate
** PostScript fonts from Microsoft compatible TrueType font files.
**
** The functions in this file do most of the work to convert a
** TrueType font to a type 3 PostScript font.
**
** Most of the material in this file is derived from a program called
** "ttf2ps" which L. S. Ng posted to the usenet news group
** "comp.sources.postscript". The author did not provide a copyright
** notice or indicate any restrictions on use.
**
** Last revised 11 July 1995.
*/
#include "global_defines.h"
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <memory>
#include "pprdrv.h"
#include "truetype.h"
#include <algorithm>
#include <stack>
class GlyphToType3 {
private:
GlyphToType3& operator=(const GlyphToType3& other);
GlyphToType3(const GlyphToType3& other);
/* The PostScript bounding box. */
int llx,lly,urx,ury;
int advance_width;
/* Variables to hold the character data. */
int *epts_ctr; /* array of contour endpoints */
int num_pts, num_ctr; /* number of points, number of coutours */
FWord *xcoor, *ycoor; /* arrays of x and y coordinates */
BYTE *tt_flags; /* array of TrueType flags */
double *area_ctr;
char *check_ctr;
int *ctrset; /* in contour index followed by out contour index */
int stack_depth; /* A book-keeping variable for keeping track of the depth of the PS stack */
bool pdf_mode;
void load_char(TTFONT* font, BYTE *glyph);
void stack(TTStreamWriter& stream, int new_elem);
void stack_end(TTStreamWriter& stream);
void PSConvert(TTStreamWriter& stream);
int nextinctr(int co, int ci);
int nextoutctr(int co);
int nearout(int ci);
double intest(int co, int ci);
void PSCurveto(TTStreamWriter& stream, FWord x, FWord y, int s, int t);
void PSMoveto(TTStreamWriter& stream, int x, int y);
void PSLineto(TTStreamWriter& stream, int x, int y);
void do_composite(TTStreamWriter& stream, struct TTFONT *font, BYTE *glyph);
public:
GlyphToType3(TTStreamWriter& stream, struct TTFONT *font, int charindex, bool embedded = false);
~GlyphToType3();
};
double area(FWord *x, FWord *y, int n);
#define sqr(x) ((x)*(x))
#define NOMOREINCTR -1
#define NOMOREOUTCTR -1
/*
** This routine is used to break the character
** procedure up into a number of smaller
** procedures. This is necessary so as not to
** overflow the stack on certain level 1 interpreters.
**
** Prepare to push another item onto the stack,
** starting a new proceedure if necessary.
**
** Not all the stack depth calculations in this routine
** are perfectly accurate, but they do the job.
*/
void GlyphToType3::stack(TTStreamWriter& stream, int new_elem)
{
if( !pdf_mode && num_pts > 25 ) /* Only do something of we will */
{ /* have a log of points. */
if(stack_depth == 0)
{
stream.putchar('{');
stack_depth=1;
}
stack_depth += new_elem; /* Account for what we propose to add */
if(stack_depth > 100)
{
stream.puts("}_e{");
stack_depth = 3 + new_elem; /* A rough estimate */
}
}
} /* end of stack() */
void GlyphToType3::stack_end(TTStreamWriter& stream) /* called at end */
{
if( !pdf_mode && stack_depth )
{
stream.puts("}_e");
stack_depth=0;
}
} /* end of stack_end() */
/*
** Find the area of a contour?
*/
double area(FWord *x, FWord *y, int n)
{
int i;
double sum;
sum=x[n-1]*y[0]-y[n-1]*x[0];
for (i=0; i<=n-2; i++) sum += x[i]*y[i+1] - y[i]*x[i+1];
return sum;
}
/*
** We call this routine to emmit the PostScript code
** for the character we have loaded with load_char().
*/
void GlyphToType3::PSConvert(TTStreamWriter& stream)
{
int i,j,k,fst,start_offpt;
int end_offpt = 0;
assert(area_ctr == NULL);
area_ctr=(double*)calloc(num_ctr, sizeof(double));
memset(area_ctr, 0, (num_ctr*sizeof(double)));
assert(check_ctr == NULL);
check_ctr=(char*)calloc(num_ctr, sizeof(char));
memset(check_ctr, 0, (num_ctr*sizeof(char)));
assert(ctrset == NULL);
ctrset=(int*)calloc(num_ctr, 2*sizeof(int));
memset(ctrset, 0, (num_ctr*2*sizeof(int)));
check_ctr[0]=1;
area_ctr[0]=area(xcoor, ycoor, epts_ctr[0]+1);
for (i=1; i<num_ctr; i++)
area_ctr[i]=area(xcoor+epts_ctr[i-1]+1, ycoor+epts_ctr[i-1]+1, epts_ctr[i]-epts_ctr[i-1]);
for (i=0; i<num_ctr; i++)
{
if (area_ctr[i]>0)
{
ctrset[2*i]=i; ctrset[2*i+1]=nearout(i);
}
else
{
ctrset[2*i]=-1; ctrset[2*i+1]=-1;
}
}
/* Step thru the coutours. */
/* I believe that a contour is a detatched */
/* set of curves and lines. */
i=j=k=0;
while( i < num_ctr )
{
fst = j = (k==0) ? 0 : (epts_ctr[k-1]+1);
/* Move to the first point on the contour. */
stack(stream, 3);
PSMoveto(stream,xcoor[j],ycoor[j]);
start_offpt = 0; /* No off curve points yet. */
/* Step thru the remaining points of this contour. */
for(j++; j <= epts_ctr[k]; j++)
{
if (!(tt_flags[j]&1)) /* Off curve */
{
if (!start_offpt)
{ start_offpt = end_offpt = j; }
else
end_offpt++;
}
else
{ /* On Curve */
if (start_offpt)
{
stack(stream, 7);
PSCurveto(stream, xcoor[j],ycoor[j],start_offpt,end_offpt);
start_offpt = 0;
}
else
{
stack(stream, 3);
PSLineto(stream, xcoor[j], ycoor[j]);
}
}
}
/* Do the final curve or line */
/* of this coutour. */
if (start_offpt)
{
stack(stream, 7); PSCurveto(stream, xcoor[fst],ycoor[fst],start_offpt,end_offpt);
}
else
{
stack(stream, 3); PSLineto(stream, xcoor[fst],ycoor[fst]);
}
k=nextinctr(i,k);
if (k==NOMOREINCTR)
i=k=nextoutctr(i);
if (i==NOMOREOUTCTR)
break;
}
/* Now, we can fill the whole thing. */
stack(stream, 1);
stream.puts( pdf_mode ? "f" : "_cl" );
/* Free our work arrays. */
free(area_ctr);
free(check_ctr);
free(ctrset);
area_ctr = NULL;
check_ctr = NULL;
ctrset = NULL;
} /* end of PSConvert() */
int GlyphToType3::nextoutctr(int co)
{
int j;
for(j=0; j<num_ctr; j++)
if (check_ctr[j]==0 && area_ctr[j] < 0) {
check_ctr[j]=1;
return j;
}
return NOMOREOUTCTR;
} /* end of nextoutctr() */
int GlyphToType3::nextinctr(int co, int ci)
{
int j;
for(j=0; j<num_ctr; j++)
if (ctrset[2*j+1]==co)
if (check_ctr[ctrset[2*j]]==0) {
check_ctr[ctrset[2*j]]=1;
return ctrset[2*j];
}
return NOMOREINCTR;
}
/*
** find the nearest out contour to a specified in contour.
*/
int GlyphToType3::nearout(int ci)
{
int k = 0; /* !!! is this right? */
int co;
double a, a1=0;
for (co=0; co < num_ctr; co++)
{
if(area_ctr[co] < 0)
{
a=intest(co,ci);
if (a<0 && a1==0)
{
k=co;
a1=a;
}
if(a<0 && a1!=0 && a>a1)
{
k=co;
a1=a;
}
}
}
return k;
} /* end of nearout() */
double GlyphToType3::intest(int co, int ci)
{
int i, j, start, end;
double r1, r2, a;
FWord xi[3], yi[3];
j=start=(co==0)?0:(epts_ctr[co-1]+1);
end=epts_ctr[co];
i=(ci==0)?0:(epts_ctr[ci-1]+1);
xi[0] = xcoor[i];
yi[0] = ycoor[i];
r1=sqr(xcoor[start] - xi[0]) + sqr(ycoor[start] - yi[0]);
for (i=start; i<=end; i++) {
r2 = sqr(xcoor[i] - xi[0])+sqr(ycoor[i] - yi[0]);
if (r2 < r1) {
r1=r2; j=i;
}
}
xi[1]=xcoor[j-1]; yi[1]=ycoor[j-1];
xi[2]=xcoor[j+1]; yi[2]=ycoor[j+1];
if (j==start) { xi[1]=xcoor[end]; yi[1]=ycoor[end]; }
if (j==end) { xi[2]=xcoor[start]; yi[2]=ycoor[start]; }
a=area(xi, yi, 3);
return a;
} /* end of intest() */
void GlyphToType3::PSMoveto(TTStreamWriter& stream, int x, int y) {
stream.printf(pdf_mode ? "%d %d m\n" : "%d %d _m\n",
x, y);
}
void GlyphToType3::PSLineto(TTStreamWriter& stream, int x, int y) {
stream.printf(pdf_mode ? "%d %d l\n" : "%d %d _l\n",
x, y);
}
/*
** Emmit a PostScript "curveto" command.
*/
void GlyphToType3::PSCurveto(TTStreamWriter& stream, FWord x, FWord y, int s, int t)
{
int N, i;
double sx[3], sy[3], cx[4], cy[4];
N = t-s+2;
for(i=0; i<N-1; i++)
{
sx[0] = i==0?xcoor[s-1]:(xcoor[i+s]+xcoor[i+s-1])/2;
sy[0] = i==0?ycoor[s-1]:(ycoor[i+s]+ycoor[i+s-1])/2;
sx[1] = xcoor[s+i];
sy[1] = ycoor[s+i];
sx[2] = i==N-2?x:(xcoor[s+i]+xcoor[s+i+1])/2;
sy[2] = i==N-2?y:(ycoor[s+i]+ycoor[s+i+1])/2;
cx[3] = sx[2];
cy[3] = sy[2];
cx[1] = (2*sx[1]+sx[0])/3;
cy[1] = (2*sy[1]+sy[0])/3;
cx[2] = (sx[2]+2*sx[1])/3;
cy[2] = (sy[2]+2*sy[1])/3;
stream.printf(pdf_mode ?
"%d %d %d %d %d %d c\n" :
"%d %d %d %d %d %d _c\n",
(int)cx[1], (int)cy[1], (int)cx[2], (int)cy[2],
(int)cx[3], (int)cy[3]);
}
} /* end of PSCurveto() */
/*
** Deallocate the structures which stored
** the data for the last simple glyph.
*/
GlyphToType3::~GlyphToType3() {
free(tt_flags); /* The flags array */
free(xcoor); /* The X coordinates */
free(ycoor); /* The Y coordinates */
free(epts_ctr); /* The array of contour endpoints */
// These last three should be NULL. Just
// free'ing them for safety.
free(area_ctr);
free(check_ctr);
free(ctrset);
}
/*
** Load the simple glyph data pointed to by glyph.
** The pointer "glyph" should point 10 bytes into
** the glyph data.
*/
void GlyphToType3::load_char(TTFONT* font, BYTE *glyph)
{
int x;
BYTE c, ct;
/* Read the contour endpoints list. */
epts_ctr = (int *)calloc(num_ctr,sizeof(int));
for (x = 0; x < num_ctr; x++)
{
epts_ctr[x] = getUSHORT(glyph);
glyph += 2;
}
/* From the endpoint of the last contour, we can */
/* determine the number of points. */
num_pts = epts_ctr[num_ctr-1]+1;
#ifdef DEBUG_TRUETYPE
debug("num_pts=%d",num_pts);
stream.printf("%% num_pts=%d\n",num_pts);
#endif
/* Skip the instructions. */
x = getUSHORT(glyph);
glyph += 2;
glyph += x;
/* Allocate space to hold the data. */
tt_flags = (BYTE *)calloc(num_pts,sizeof(BYTE));
xcoor = (FWord *)calloc(num_pts,sizeof(FWord));
ycoor = (FWord *)calloc(num_pts,sizeof(FWord));
/* Read the flags array, uncompressing it as we go. */
/* There is danger of overflow here. */
for (x = 0; x < num_pts; )
{
tt_flags[x++] = c = *(glyph++);
if (c&8) /* If next byte is repeat count, */
{
ct = *(glyph++);
if( (x + ct) > num_pts )
throw TTException("Error in TT flags");
while (ct--)
tt_flags[x++] = c;
}
}
/* Read the x coordinates */
for (x = 0; x < num_pts; x++)
{
if (tt_flags[x] & 2) /* one byte value with */
{ /* external sign */
c = *(glyph++);
xcoor[x] = (tt_flags[x] & 0x10) ? c : (-1 * (int)c);
}
else if(tt_flags[x] & 0x10) /* repeat last */
{
xcoor[x] = 0;
}
else /* two byte signed value */
{
xcoor[x] = getFWord(glyph);
glyph+=2;
}
}
/* Read the y coordinates */
for(x = 0; x < num_pts; x++)
{
if (tt_flags[x] & 4) /* one byte value with */
{ /* external sign */
c = *(glyph++);
ycoor[x] = (tt_flags[x] & 0x20) ? c : (-1 * (int)c);
}
else if (tt_flags[x] & 0x20) /* repeat last value */
{
ycoor[x] = 0;
}
else /* two byte signed value */
{
ycoor[x] = getUSHORT(glyph);
glyph+=2;
}
}
/* Convert delta values to absolute values. */
for(x = 1; x < num_pts; x++)
{
xcoor[x] += xcoor[x-1];
ycoor[x] += ycoor[x-1];
}
for(x=0; x < num_pts; x++)
{
xcoor[x] = topost(xcoor[x]);
ycoor[x] = topost(ycoor[x]);
}
} /* end of load_char() */
/*
** Emmit PostScript code for a composite character.
*/
void GlyphToType3::do_composite(TTStreamWriter& stream, struct TTFONT *font, BYTE *glyph)
{
USHORT flags;
USHORT glyphIndex;
int arg1;
int arg2;
USHORT xscale;
USHORT yscale;
USHORT scale01;
USHORT scale10;
/* Once around this loop for each component. */
do {
flags = getUSHORT(glyph); /* read the flags word */
glyph += 2;
glyphIndex = getUSHORT(glyph); /* read the glyphindex word */
glyph += 2;
if(flags & ARG_1_AND_2_ARE_WORDS)
{ /* The tt spec. seems to say these are signed. */
arg1 = getSHORT(glyph);
glyph += 2;
arg2 = getSHORT(glyph);
glyph += 2;
}
else /* The tt spec. does not clearly indicate */
{ /* whether these values are signed or not. */
arg1 = *(signed char *)(glyph++);
arg2 = *(signed char *)(glyph++);
}
if(flags & WE_HAVE_A_SCALE)
{
xscale = yscale = getUSHORT(glyph);
glyph += 2;
scale01 = scale10 = 0;
}
else if(flags & WE_HAVE_AN_X_AND_Y_SCALE)
{
xscale = getUSHORT(glyph);
glyph += 2;
yscale = getUSHORT(glyph);
glyph += 2;
scale01 = scale10 = 0;
}
else if(flags & WE_HAVE_A_TWO_BY_TWO)
{
xscale = getUSHORT(glyph);
glyph += 2;
scale01 = getUSHORT(glyph);
glyph += 2;
scale10 = getUSHORT(glyph);
glyph += 2;
yscale = getUSHORT(glyph);
glyph += 2;
}
else
{
xscale = yscale = scale01 = scale10 = 0;
}
/* Debugging */
#ifdef DEBUG_TRUETYPE
stream.printf("%% flags=%d, arg1=%d, arg2=%d, xscale=%d, yscale=%d, scale01=%d, scale10=%d\n",
(int)flags,arg1,arg2,(int)xscale,(int)yscale,(int)scale01,(int)scale10);
#endif
if (pdf_mode) {
if ( flags & ARGS_ARE_XY_VALUES ) {
/* We should have been able to use 'Do' to reference the
subglyph here. However, that doesn't seem to work with
xpdf or gs (only acrobat), so instead, this just includes
the subglyph here inline. */
stream.printf("q 1 0 0 1 %d %d cm\n", topost(arg1), topost(arg2));
} else {
stream.printf("%% unimplemented shift, arg1=%d, arg2=%d\n",arg1,arg2);
}
GlyphToType3(stream, font, glyphIndex, true);
if ( flags & ARGS_ARE_XY_VALUES ) {
stream.printf("\nQ\n");
}
} else {
/* If we have an (X,Y) shif and it is non-zero, */
/* translate the coordinate system. */
if( flags & ARGS_ARE_XY_VALUES )
{
if( arg1 != 0 || arg2 != 0 )
stream.printf("gsave %d %d translate\n", topost(arg1), topost(arg2) );
}
else
{
stream.printf("%% unimplemented shift, arg1=%d, arg2=%d\n",arg1,arg2);
}
/* Invoke the CharStrings procedure to print the component. */
stream.printf("false CharStrings /%s get exec\n",
ttfont_CharStrings_getname(font,glyphIndex));
/* If we translated the coordinate system, */
/* put it back the way it was. */
if( flags & ARGS_ARE_XY_VALUES && (arg1 != 0 || arg2 != 0) ) {
stream.puts("grestore ");
}
}
} while(flags & MORE_COMPONENTS);
} /* end of do_composite() */
/*
** Return a pointer to a specific glyph's data.
*/
BYTE *find_glyph_data(struct TTFONT *font, int charindex)
{
ULONG off;
ULONG length;
/* Read the glyph offset from the index to location table. */
if(font->indexToLocFormat == 0)
{
off = getUSHORT( font->loca_table + (charindex * 2) );
off *= 2;
length = getUSHORT( font->loca_table + ((charindex+1) * 2) );
length *= 2;
length -= off;
}
else
{
off = getULONG( font->loca_table + (charindex * 4) );
length = getULONG( font->loca_table + ((charindex+1) * 4) );
length -= off;
}
if(length > 0)
return font->glyf_table + off;
else
return (BYTE*)NULL;
} /* end of find_glyph_data() */
GlyphToType3::GlyphToType3(TTStreamWriter& stream, struct TTFONT *font, int charindex, bool embedded /* = false */) {
BYTE *glyph;
tt_flags = NULL;
xcoor = NULL;
ycoor = NULL;
epts_ctr = NULL;
area_ctr = NULL;
check_ctr = NULL;
ctrset = NULL;
stack_depth = 0;
pdf_mode = font->target_type < 0;
/* Get a pointer to the data. */
glyph = find_glyph_data( font, charindex );
/* If the character is blank, it has no bounding box, */
/* otherwise read the bounding box. */
if( glyph == (BYTE*)NULL )
{
llx=lly=urx=ury=0; /* A blank char has an all zero BoundingBox */
num_ctr=0; /* Set this for later if()s */
}
else
{
/* Read the number of contours. */
num_ctr = getSHORT(glyph);
/* Read PostScript bounding box. */
llx = getFWord(glyph + 2);
lly = getFWord(glyph + 4);
urx = getFWord(glyph + 6);
ury = getFWord(glyph + 8);
/* Advance the pointer. */
glyph += 10;
}
/* If it is a simple character, load its data. */
if (num_ctr > 0)
load_char(font, glyph);
else
num_pts=0;
/* Consult the horizontal metrics table to determine */
/* the character width. */
if( charindex < font->numberOfHMetrics )
advance_width = getuFWord( font->hmtx_table + (charindex * 4) );
else
advance_width = getuFWord( font->hmtx_table + ((font->numberOfHMetrics-1) * 4) );
/* Execute setcachedevice in order to inform the font machinery */
/* of the character bounding box and advance width. */
stack(stream, 7);
if (pdf_mode) {
if (!embedded)
stream.printf("%d 0 %d %d %d %d d1\n",
topost(advance_width),
topost(llx), topost(lly), topost(urx), topost(ury) );
} else
stream.printf("%d 0 %d %d %d %d _sc\n",
topost(advance_width),
topost(llx), topost(lly), topost(urx), topost(ury) );
/* If it is a simple glyph, convert it, */
/* otherwise, close the stack business. */
if( num_ctr > 0 ) /* simple */
{
PSConvert(stream);
}
else if( num_ctr < 0 ) /* composite */
{
do_composite(stream, font, glyph);
}
stack_end(stream);
}
/*
** This is the routine which is called from pprdrv_tt.c.
*/
void tt_type3_charproc(TTStreamWriter& stream, struct TTFONT *font, int charindex)
{
GlyphToType3 glyph(stream, font, charindex);
} /* end of tt_type3_charproc() */
/*
** Some of the given glyph ids may refer to composite glyphs.
** This function adds all of the dependencies of those composite
** glyphs to the glyph id vector. Michael Droettboom [06-07-07]
*/
void ttfont_add_glyph_dependencies(struct TTFONT *font, std::vector<int>& glyph_ids) {
std::sort(glyph_ids.begin(), glyph_ids.end());
std::stack<int> glyph_stack;
for (std::vector<int>::iterator i = glyph_ids.begin();
i != glyph_ids.end(); ++i) {
glyph_stack.push(*i);
}
while (glyph_stack.size()) {
int gind = glyph_stack.top();
glyph_stack.pop();
BYTE* glyph = find_glyph_data( font, gind );
if (glyph != (BYTE*)NULL) {
int num_ctr = getSHORT(glyph);
if (num_ctr <= 0) { // This is a composite glyph
glyph += 10;
USHORT flags = 0;
do {
flags = getUSHORT(glyph);
glyph += 2;
gind = (int)getUSHORT(glyph);
glyph += 2;
std::vector<int>::iterator insertion =
std::lower_bound(glyph_ids.begin(), glyph_ids.end(), gind);
if (*insertion != gind) {
glyph_ids.insert(insertion, gind);
glyph_stack.push(gind);
}
if (flags & ARG_1_AND_2_ARE_WORDS)
glyph += 4;
else
glyph += 2;
if (flags & WE_HAVE_A_SCALE)
glyph += 2;
else if (flags & WE_HAVE_AN_X_AND_Y_SCALE)
glyph += 4;
else if (flags & WE_HAVE_A_TWO_BY_TWO)
glyph += 8;
} while (flags & MORE_COMPONENTS);
}
}
}
}
/* end of file */
|