Coverage Report

Created: 2026-03-31 07:04

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/xpdf-4.06/splash/SplashFTFont.cc
Line
Count
Source
1
//========================================================================
2
//
3
// SplashFTFont.cc
4
//
5
// Copyright 2003-2013 Glyph & Cog, LLC
6
//
7
//========================================================================
8
9
#include <aconf.h>
10
11
#if HAVE_FREETYPE_H
12
13
#include <ft2build.h>
14
#include FT_OUTLINE_H
15
#include FT_SIZES_H
16
#include FT_GLYPH_H
17
#include "gmem.h"
18
#include "gmempp.h"
19
#include "SplashMath.h"
20
#include "SplashGlyphBitmap.h"
21
#include "SplashPath.h"
22
#include "SplashFontEngine.h"
23
#include "SplashFTFontEngine.h"
24
#include "SplashFTFontFile.h"
25
#include "SplashFTFont.h"
26
27
//------------------------------------------------------------------------
28
29
static int glyphPathMoveTo(const FT_Vector *pt, void *path);
30
static int glyphPathLineTo(const FT_Vector *pt, void *path);
31
static int glyphPathConicTo(const FT_Vector *ctrl, const FT_Vector *pt,
32
          void *path);
33
static int glyphPathCubicTo(const FT_Vector *ctrl1, const FT_Vector *ctrl2,
34
          const FT_Vector *pt, void *path);
35
36
//------------------------------------------------------------------------
37
// SplashFTFont
38
//------------------------------------------------------------------------
39
40
SplashFTFont::SplashFTFont(SplashFTFontFile *fontFileA, SplashCoord *matA,
41
         SplashCoord *textMatA):
42
6.42k
  SplashFont(fontFileA, matA, textMatA, fontFileA->engine->aa)
43
6.42k
{
44
6.42k
  FT_Face face;
45
6.42k
  int size, div;
46
6.42k
  int x, y;
47
#if USE_FIXEDPOINT
48
  SplashCoord scale;
49
#endif
50
51
6.42k
  face = fontFileA->face;
52
6.42k
  if (FT_New_Size(face, &sizeObj)) {
53
0
    return;
54
0
  }
55
6.42k
  face->size = sizeObj;
56
6.42k
  size = splashRound(splashDist(0, 0, mat[2], mat[3]));
57
6.42k
  if (size < 1) {
58
6.42k
    size = 1;
59
6.42k
  }
60
6.42k
  if (FT_Set_Pixel_Sizes(face, 0, size)) {
61
224
    return;
62
224
  }
63
  // if the textMat values are too small, FreeType's fixed point
64
  // arithmetic doesn't work so well
65
6.19k
  textScale = splashDist(0, 0, textMat[2], textMat[3]) / size;
66
  // avoid problems with singular (or close-to-singular) matrices
67
6.19k
  if (textScale < 0.00001) {
68
2.53k
    textScale = 0.00001;
69
2.53k
  }
70
71
6.19k
  div = face->bbox.xMax > 20000 ? 65536 : 1;
72
73
#if USE_FIXEDPOINT
74
  scale = (SplashCoord)1 / (SplashCoord)face->units_per_EM;
75
76
  // transform the four corners of the font bounding box -- the min
77
  // and max values form the bounding box of the transformed font
78
  x = (int)(mat[0] * (scale * (face->bbox.xMin / div)) +
79
      mat[2] * (scale * (face->bbox.yMin / div)));
80
  xMin = xMax = x;
81
  y = (int)(mat[1] * (scale * (face->bbox.xMin / div)) +
82
      mat[3] * (scale * (face->bbox.yMin / div)));
83
  yMin = yMax = y;
84
  x = (int)(mat[0] * (scale * (face->bbox.xMin / div)) +
85
      mat[2] * (scale * (face->bbox.yMax / div)));
86
  if (x < xMin) {
87
    xMin = x;
88
  } else if (x > xMax) {
89
    xMax = x;
90
  }
91
  y = (int)(mat[1] * (scale * (face->bbox.xMin / div)) +
92
      mat[3] * (scale * (face->bbox.yMax / div)));
93
  if (y < yMin) {
94
    yMin = y;
95
  } else if (y > yMax) {
96
    yMax = y;
97
  }
98
  x = (int)(mat[0] * (scale * (face->bbox.xMax / div)) +
99
      mat[2] * (scale * (face->bbox.yMin / div)));
100
  if (x < xMin) {
101
    xMin = x;
102
  } else if (x > xMax) {
103
    xMax = x;
104
  }
105
  y = (int)(mat[1] * (scale * (face->bbox.xMax / div)) +
106
      mat[3] * (scale * (face->bbox.yMin / div)));
107
  if (y < yMin) {
108
    yMin = y;
109
  } else if (y > yMax) {
110
    yMax = y;
111
  }
112
  x = (int)(mat[0] * (scale * (face->bbox.xMax / div)) +
113
      mat[2] * (scale * (face->bbox.yMax / div)));
114
  if (x < xMin) {
115
    xMin = x;
116
  } else if (x > xMax) {
117
    xMax = x;
118
  }
119
  y = (int)(mat[1] * (scale * (face->bbox.xMax / div)) +
120
      mat[3] * (scale * (face->bbox.yMax / div)));
121
  if (y < yMin) {
122
    yMin = y;
123
  } else if (y > yMax) {
124
    yMax = y;
125
  }
126
#else // USE_FIXEDPOINT
127
  // transform the four corners of the font bounding box -- the min
128
  // and max values form the bounding box of the transformed font
129
6.19k
  x = (int)((mat[0] * (SplashCoord)face->bbox.xMin
130
6.19k
       + mat[2] * (SplashCoord)face->bbox.yMin) /
131
6.19k
      (div * face->units_per_EM));
132
6.19k
  xMin = xMax = x;
133
6.19k
  y = (int)((mat[1] * (SplashCoord)face->bbox.xMin
134
6.19k
       + mat[3] * (SplashCoord)face->bbox.yMin) /
135
6.19k
      (div * face->units_per_EM));
136
6.19k
  yMin = yMax = y;
137
6.19k
  x = (int)((mat[0] * (SplashCoord)face->bbox.xMin
138
6.19k
       + mat[2] * (SplashCoord)face->bbox.yMax) /
139
6.19k
      (div * face->units_per_EM));
140
6.19k
  if (x < xMin) {
141
0
    xMin = x;
142
6.19k
  } else if (x > xMax) {
143
0
    xMax = x;
144
0
  }
145
6.19k
  y = (int)((mat[1] * (SplashCoord)face->bbox.xMin
146
6.19k
       + mat[3] * (SplashCoord)face->bbox.yMax) /
147
6.19k
      (div * face->units_per_EM));
148
6.19k
  if (y < yMin) {
149
102
    yMin = y;
150
6.09k
  } else if (y > yMax) {
151
49
    yMax = y;
152
49
  }
153
6.19k
  x = (int)((mat[0] * (SplashCoord)face->bbox.xMax
154
6.19k
       + mat[2] * (SplashCoord)face->bbox.yMin) /
155
6.19k
      (div * face->units_per_EM));
156
6.19k
  if (x < xMin) {
157
40
    xMin = x;
158
6.15k
  } else if (x > xMax) {
159
57
    xMax = x;
160
57
  }
161
6.19k
  y = (int)((mat[1] * (SplashCoord)face->bbox.xMax
162
6.19k
       + mat[3] * (SplashCoord)face->bbox.yMin) /
163
6.19k
      (div * face->units_per_EM));
164
6.19k
  if (y < yMin) {
165
0
    yMin = y;
166
6.19k
  } else if (y > yMax) {
167
0
    yMax = y;
168
0
  }
169
6.19k
  x = (int)((mat[0] * (SplashCoord)face->bbox.xMax
170
6.19k
       + mat[2] * (SplashCoord)face->bbox.yMax) /
171
6.19k
      (div * face->units_per_EM));
172
6.19k
  if (x < xMin) {
173
0
    xMin = x;
174
6.19k
  } else if (x > xMax) {
175
0
    xMax = x;
176
0
  }
177
6.19k
  y = (int)((mat[1] * (SplashCoord)face->bbox.xMax
178
6.19k
       + mat[3] * (SplashCoord)face->bbox.yMax) /
179
6.19k
      (div * face->units_per_EM));
180
6.19k
  if (y < yMin) {
181
0
    yMin = y;
182
6.19k
  } else if (y > yMax) {
183
0
    yMax = y;
184
0
  }
185
6.19k
#endif // USE_FIXEDPOINT
186
  // This is a kludge: some buggy PDF generators embed fonts with
187
  // zero bounding boxes.
188
6.19k
  if (xMax == xMin) {
189
6.10k
    xMin = 0;
190
6.10k
    xMax = size;
191
6.10k
  }
192
6.19k
  if (yMax == yMin) {
193
6.04k
    yMin = 0;
194
6.04k
    yMax = (int)((SplashCoord)1.2 * size);
195
6.04k
  }
196
197
  // compute the transform matrix
198
#if USE_FIXEDPOINT
199
  matrix.xx = (FT_Fixed)((mat[0] / size).get16Dot16());
200
  matrix.yx = (FT_Fixed)((mat[1] / size).get16Dot16());
201
  matrix.xy = (FT_Fixed)((mat[2] / size).get16Dot16());
202
  matrix.yy = (FT_Fixed)((mat[3] / size).get16Dot16());
203
  textMatrix.xx = (FT_Fixed)((textMat[0] / (textScale * size)).get16Dot16());
204
  textMatrix.yx = (FT_Fixed)((textMat[1] / (textScale * size)).get16Dot16());
205
  textMatrix.xy = (FT_Fixed)((textMat[2] / (textScale * size)).get16Dot16());
206
  textMatrix.yy = (FT_Fixed)((textMat[3] / (textScale * size)).get16Dot16());
207
#else
208
6.19k
  matrix.xx = (FT_Fixed)((mat[0] / size) * 65536);
209
6.19k
  matrix.yx = (FT_Fixed)((mat[1] / size) * 65536);
210
6.19k
  matrix.xy = (FT_Fixed)((mat[2] / size) * 65536);
211
6.19k
  matrix.yy = (FT_Fixed)((mat[3] / size) * 65536);
212
6.19k
  textMatrix.xx = (FT_Fixed)((textMat[0] / (textScale * size)) * 65536);
213
6.19k
  textMatrix.yx = (FT_Fixed)((textMat[1] / (textScale * size)) * 65536);
214
6.19k
  textMatrix.xy = (FT_Fixed)((textMat[2] / (textScale * size)) * 65536);
215
6.19k
  textMatrix.yy = (FT_Fixed)((textMat[3] / (textScale * size)) * 65536);
216
6.19k
#endif
217
6.19k
}
218
219
6.42k
SplashFTFont::~SplashFTFont() {
220
6.42k
}
221
222
GBool SplashFTFont::getGlyph(Guint c, int xFrac, int yFrac,
223
488k
           SplashGlyphBitmap *bitmap) {
224
488k
  return SplashFont::getGlyph(c, xFrac, 0, bitmap);
225
488k
}
226
227
GBool SplashFTFont::makeGlyph(Guint c, int xFrac, int yFrac,
228
480k
            SplashGlyphBitmap *bitmap) {
229
480k
  SplashFTFontFile *ff;
230
480k
  FT_Vector offset;
231
480k
  FT_GlyphSlot slot;
232
480k
  int gid;
233
480k
  FT_Int32 flags;
234
480k
  int rowSize;
235
480k
  Guchar *p, *q;
236
480k
  int i;
237
238
480k
  ff = (SplashFTFontFile *)fontFile;
239
240
480k
  ff->face->size = sizeObj;
241
480k
  offset.x = (FT_Pos)(int)((SplashCoord)xFrac * splashFontFractionMul * 64);
242
480k
  offset.y = 0;
243
480k
  FT_Set_Transform(ff->face, &matrix, &offset);
244
480k
  slot = ff->face->glyph;
245
246
480k
  if (ff->codeToGID && c < (Guint)ff->codeToGIDLen) {
247
438k
    gid = ff->codeToGID[c];
248
438k
  } else {
249
41.4k
    gid = c;
250
41.4k
  }
251
480k
  if (ff->fontType == splashFontTrueType && gid < 0) {
252
    // skip the TrueType notdef glyph
253
21.8k
    return gFalse;
254
21.8k
  }
255
256
  // Set up the load flags:
257
  // * disable bitmaps because they look ugly when scaled, rotated,
258
  //   etc.
259
  // * disable autohinting because it can fail badly with font subsets
260
  //   that use invalid glyph names (the FreeType autohinter depends
261
  //   on the glyph name to figure out how to autohint the glyph)
262
  // * but enable light autohinting for Type 1 fonts because regular
263
  //   hinting looks pretty bad, and the invalid glyph name issue
264
  //   seems to be very rare (Type 1 fonts are mostly used for
265
  //   substitution, in which case the full font is being used, which
266
  //   means we have the glyph names)
267
  // This also sets the "pedantic" flag, running the FreeType hinter
268
  // in paranoid mode.  If that triggers any errors, we disable
269
  // hinting below.
270
458k
  flags = FT_LOAD_NO_BITMAP | FT_LOAD_PEDANTIC;
271
458k
  if (ff->engine->flags & splashFTNoHinting) {
272
0
    flags |= FT_LOAD_NO_HINTING;
273
458k
  } else if (ff->fontType == splashFontType1) {
274
44.8k
    flags |= FT_LOAD_TARGET_LIGHT;
275
413k
  } else {
276
413k
    flags |= FT_LOAD_NO_AUTOHINT;
277
413k
  }
278
458k
  if (FT_Load_Glyph(ff->face, (FT_UInt)gid, flags)) {
279
    // fonts with broken hinting instructions can cause errors here;
280
    // try again with no hinting (this is probably only relevant for
281
    // TrueType fonts)
282
205k
    flags = FT_LOAD_NO_BITMAP | FT_LOAD_NO_HINTING;
283
205k
    if (FT_Load_Glyph(ff->face, (FT_UInt)gid, flags)) {
284
171k
      return gFalse;
285
171k
    }
286
205k
  }
287
287k
  if (FT_Render_Glyph(slot, aa ? FT_RENDER_MODE_NORMAL
288
287k
                   : FT_RENDER_MODE_MONO)) {
289
74.2k
    return gFalse;
290
74.2k
  }
291
212k
  if (slot->bitmap.width == 0 || slot->bitmap.rows == 0) {
292
    // this can happen if (a) the glyph is really tiny or (b) the
293
    // metrics in the TrueType file are broken
294
200k
    return gFalse;
295
200k
  }
296
297
12.0k
  bitmap->x = -slot->bitmap_left;
298
12.0k
  bitmap->y = slot->bitmap_top;
299
12.0k
  bitmap->w = slot->bitmap.width;
300
12.0k
  bitmap->h = slot->bitmap.rows;
301
12.0k
  bitmap->aa = aa;
302
12.0k
  if (aa) {
303
12.0k
    rowSize = bitmap->w;
304
12.0k
  } else {
305
0
    rowSize = (bitmap->w + 7) >> 3;
306
0
  }
307
12.0k
  bitmap->data = (Guchar *)gmallocn(bitmap->h, rowSize);
308
12.0k
  bitmap->freeData = gTrue;
309
12.0k
  for (i = 0, p = bitmap->data, q = slot->bitmap.buffer;
310
104k
       i < bitmap->h;
311
92.0k
       ++i, p += rowSize, q += slot->bitmap.pitch) {
312
92.0k
    memcpy(p, q, rowSize);
313
92.0k
  }
314
315
12.0k
  return gTrue;
316
212k
}
317
318
struct SplashFTFontPath {
319
  SplashPath *path;
320
  SplashCoord textScale;
321
  GBool needClose;
322
};
323
324
934k
SplashPath *SplashFTFont::getGlyphPath(Guint c) {
325
934k
  static FT_Outline_Funcs outlineFuncs = {
326
#if FREETYPE_MINOR <= 1
327
    (int (*)(FT_Vector *, void *))&glyphPathMoveTo,
328
    (int (*)(FT_Vector *, void *))&glyphPathLineTo,
329
    (int (*)(FT_Vector *, FT_Vector *, void *))&glyphPathConicTo,
330
    (int (*)(FT_Vector *, FT_Vector *, FT_Vector *, void *))&glyphPathCubicTo,
331
#else
332
934k
    &glyphPathMoveTo,
333
934k
    &glyphPathLineTo,
334
934k
    &glyphPathConicTo,
335
934k
    &glyphPathCubicTo,
336
934k
#endif
337
934k
    0, 0
338
934k
  };
339
934k
  SplashFTFontFile *ff;
340
934k
  SplashFTFontPath path;
341
934k
  FT_GlyphSlot slot;
342
934k
  int gid;
343
934k
  FT_Glyph glyph;
344
345
934k
  ff = (SplashFTFontFile *)fontFile;
346
934k
  ff->face->size = sizeObj;
347
934k
  FT_Set_Transform(ff->face, &textMatrix, NULL);
348
934k
  slot = ff->face->glyph;
349
934k
  if (ff->codeToGID && c < (Guint)ff->codeToGIDLen) {
350
930k
    gid = ff->codeToGID[c];
351
930k
  } else {
352
4.05k
    gid = c;
353
4.05k
  }
354
934k
  if (ff->fontType == splashFontTrueType && gid < 0) {
355
    // skip the TrueType notdef glyph
356
18.6k
    return NULL;
357
18.6k
  }
358
916k
  if (FT_Load_Glyph(ff->face, (FT_UInt)gid, FT_LOAD_NO_BITMAP)) {
359
    // fonts with broken hinting instructions can cause errors here;
360
    // try again with no hinting (this is probably only relevant for
361
    // TrueType fonts)
362
241k
    if (FT_Load_Glyph(ff->face, (FT_UInt)gid,
363
241k
          FT_LOAD_NO_BITMAP | FT_LOAD_NO_HINTING)) {
364
239k
      return NULL;
365
239k
    }
366
241k
  }
367
676k
  if (FT_Get_Glyph(slot, &glyph)) {
368
725
    return NULL;
369
725
  }
370
675k
  path.path = new SplashPath();
371
675k
  path.textScale = textScale;
372
675k
  path.needClose = gFalse;
373
675k
  FT_Outline_Decompose(&((FT_OutlineGlyph)glyph)->outline,
374
675k
           &outlineFuncs, &path);
375
675k
  if (path.needClose) {
376
251k
    path.path->close();
377
251k
  }
378
675k
  FT_Done_Glyph(glyph);
379
675k
  return path.path;
380
676k
}
381
382
1.05M
static int glyphPathMoveTo(const FT_Vector *pt, void *path) {
383
1.05M
  SplashFTFontPath *p = (SplashFTFontPath *)path;
384
385
1.05M
  if (p->needClose) {
386
808k
    p->path->close();
387
808k
    p->needClose = gFalse;
388
808k
  }
389
1.05M
  p->path->moveTo((SplashCoord)pt->x * p->textScale / 64.0,
390
1.05M
      (SplashCoord)pt->y * p->textScale / 64.0);
391
1.05M
  return 0;
392
1.05M
}
393
394
3.24M
static int glyphPathLineTo(const FT_Vector *pt, void *path) {
395
3.24M
  SplashFTFontPath *p = (SplashFTFontPath *)path;
396
397
3.24M
  p->path->lineTo((SplashCoord)pt->x * p->textScale / 64.0,
398
3.24M
      (SplashCoord)pt->y * p->textScale / 64.0);
399
3.24M
  p->needClose = gTrue;
400
3.24M
  return 0;
401
3.24M
}
402
403
static int glyphPathConicTo(const FT_Vector *ctrl, const FT_Vector *pt,
404
480k
          void *path) {
405
480k
  SplashFTFontPath *p = (SplashFTFontPath *)path;
406
480k
  SplashCoord x0, y0, x1, y1, x2, y2, x3, y3, xc, yc;
407
408
480k
  if (!p->path->getCurPt(&x0, &y0)) {
409
0
    return 0;
410
0
  }
411
480k
  xc = (SplashCoord)ctrl->x * p->textScale / 64.0;
412
480k
  yc = (SplashCoord)ctrl->y * p->textScale / 64.0;
413
480k
  x3 = (SplashCoord)pt->x * p->textScale / 64.0;
414
480k
  y3 = (SplashCoord)pt->y * p->textScale / 64.0;
415
416
  // A second-order Bezier curve is defined by two endpoints, p0 and
417
  // p3, and one control point, pc:
418
  //
419
  //     p(t) = (1-t)^2*p0 + t*(1-t)*pc + t^2*p3
420
  //
421
  // A third-order Bezier curve is defined by the same two endpoints,
422
  // p0 and p3, and two control points, p1 and p2:
423
  //
424
  //     p(t) = (1-t)^3*p0 + 3t*(1-t)^2*p1 + 3t^2*(1-t)*p2 + t^3*p3
425
  //
426
  // Applying some algebra, we can convert a second-order curve to a
427
  // third-order curve:
428
  //
429
  //     p1 = (1/3) * (p0 + 2pc)
430
  //     p2 = (1/3) * (2pc + p3)
431
432
480k
  x1 = (SplashCoord)(1.0 / 3.0) * (x0 + (SplashCoord)2 * xc);
433
480k
  y1 = (SplashCoord)(1.0 / 3.0) * (y0 + (SplashCoord)2 * yc);
434
480k
  x2 = (SplashCoord)(1.0 / 3.0) * ((SplashCoord)2 * xc + x3);
435
480k
  y2 = (SplashCoord)(1.0 / 3.0) * ((SplashCoord)2 * yc + y3);
436
437
480k
  p->path->curveTo(x1, y1, x2, y2, x3, y3);
438
480k
  p->needClose = gTrue;
439
480k
  return 0;
440
480k
}
441
442
static int glyphPathCubicTo(const FT_Vector *ctrl1, const FT_Vector *ctrl2,
443
4.53k
          const FT_Vector *pt, void *path) {
444
4.53k
  SplashFTFontPath *p = (SplashFTFontPath *)path;
445
446
4.53k
  p->path->curveTo((SplashCoord)ctrl1->x * p->textScale / 64.0,
447
4.53k
       (SplashCoord)ctrl1->y * p->textScale / 64.0,
448
4.53k
       (SplashCoord)ctrl2->x * p->textScale / 64.0,
449
4.53k
       (SplashCoord)ctrl2->y * p->textScale / 64.0,
450
4.53k
       (SplashCoord)pt->x * p->textScale / 64.0,
451
4.53k
       (SplashCoord)pt->y * p->textScale / 64.0);
452
4.53k
  p->needClose = gTrue;
453
4.53k
  return 0;
454
4.53k
}
455
456
#endif // HAVE_FREETYPE_H