face.go 13.4 KB
Newer Older
N
Nigel Tao 已提交
1 2 3 4 5 6 7 8 9
// Copyright 2015 The Freetype-Go Authors. All rights reserved.
// Use of this source code is governed by your choice of either the
// FreeType License or the GNU General Public License version 2 (or
// any later version), both of which can be found in the LICENSE file.

package truetype

import (
	"image"
10
	"math"
N
Nigel Tao 已提交
11 12

	"github.com/golang/freetype/raster"
13
	"golang.org/x/image/font"
N
Nigel Tao 已提交
14 15 16
	"golang.org/x/image/math/fixed"
)

N
Nigel Tao 已提交
17 18 19 20
func powerOf2(i int) bool {
	return i != 0 && (i&(i-1)) == 0
}

N
Nigel Tao 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
// Options are optional arguments to NewFace.
type Options struct {
	// Size is the font size in points, as in "a 10 point font size".
	//
	// A zero value means to use a 12 point font size.
	Size float64

	// DPI is the dots-per-inch resolution.
	//
	// A zero value means to use 72 DPI.
	DPI float64

	// Hinting is how to quantize the glyph nodes.
	//
	// A zero value means to use no hinting.
	Hinting font.Hinting
N
Nigel Tao 已提交
37

N
Nigel Tao 已提交
38 39 40 41 42 43 44 45
	// GlyphCacheEntries is the number of entries in the glyph mask image
	// cache.
	//
	// If non-zero, it must be a power of 2.
	//
	// A zero value means to use 512 entries.
	GlyphCacheEntries int

N
Nigel Tao 已提交
46 47 48 49 50 51 52
	// SubPixelsX is the number of sub-pixel locations a glyph's dot is
	// quantized to, in the horizontal direction. For example, a value of 8
	// means that the dot is quantized to 1/8th of a pixel. This quantization
	// only affects the glyph mask image, not its bounding box or advance
	// width. A higher value gives a more faithful glyph image, but reduces the
	// effectiveness of the glyph cache.
	//
N
Nigel Tao 已提交
53
	// If non-zero, it must be a power of 2, and be between 1 and 64 inclusive.
N
Nigel Tao 已提交
54 55 56 57 58 59 60 61 62 63 64
	//
	// A zero value means to use 4 sub-pixel locations.
	SubPixelsX int

	// SubPixelsY is the number of sub-pixel locations a glyph's dot is
	// quantized to, in the vertical direction. For example, a value of 8
	// means that the dot is quantized to 1/8th of a pixel. This quantization
	// only affects the glyph mask image, not its bounding box or advance
	// width. A higher value gives a more faithful glyph image, but reduces the
	// effectiveness of the glyph cache.
	//
N
Nigel Tao 已提交
65
	// If non-zero, it must be a power of 2, and be between 1 and 64 inclusive.
N
Nigel Tao 已提交
66 67 68
	//
	// A zero value means to use 1 sub-pixel location.
	SubPixelsY int
N
Nigel Tao 已提交
69 70 71
}

func (o *Options) size() float64 {
N
Nigel Tao 已提交
72
	if o != nil && o.Size > 0 {
N
Nigel Tao 已提交
73 74 75 76 77 78
		return o.Size
	}
	return 12
}

func (o *Options) dpi() float64 {
N
Nigel Tao 已提交
79
	if o != nil && o.DPI > 0 {
N
Nigel Tao 已提交
80 81 82 83 84 85
		return o.DPI
	}
	return 72
}

func (o *Options) hinting() font.Hinting {
N
Nigel Tao 已提交
86 87 88 89 90 91
	if o != nil {
		switch o.Hinting {
		case font.HintingVertical, font.HintingFull:
			// TODO: support vertical hinting.
			return font.HintingFull
		}
N
Nigel Tao 已提交
92 93 94 95
	}
	return font.HintingNone
}

N
Nigel Tao 已提交
96 97 98 99 100 101 102 103 104 105
func (o *Options) glyphCacheEntries() int {
	if o != nil && powerOf2(o.GlyphCacheEntries) {
		return o.GlyphCacheEntries
	}
	// 512 is 128 * 4 * 1, which lets us cache 128 glyphs at 4 * 1 subpixel
	// locations in the X and Y direction.
	return 512
}

func (o *Options) subPixelsX() (value uint32, halfQuantum, mask fixed.Int26_6) {
N
Nigel Tao 已提交
106 107 108 109 110 111 112 113 114 115 116 117
	if o != nil {
		switch o.SubPixelsX {
		case 1, 2, 4, 8, 16, 32, 64:
			return subPixels(o.SubPixelsX)
		}
	}
	// This default value of 4 isn't based on anything scientific, merely as
	// small a number as possible that looks almost as good as no quantization,
	// or returning subPixels(64).
	return subPixels(4)
}

N
Nigel Tao 已提交
118
func (o *Options) subPixelsY() (value uint32, halfQuantum, mask fixed.Int26_6) {
N
Nigel Tao 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131
	if o != nil {
		switch o.SubPixelsX {
		case 1, 2, 4, 8, 16, 32, 64:
			return subPixels(o.SubPixelsX)
		}
	}
	// This default value of 1 isn't based on anything scientific, merely that
	// vertical sub-pixel glyph rendering is pretty rare. Baseline locations
	// can usually afford to snap to the pixel grid, so the vertical direction
	// doesn't have the deal with the horizontal's fractional advance widths.
	return subPixels(1)
}

N
Nigel Tao 已提交
132 133
// subPixels returns q and the bias and mask that leads to q quantized
// sub-pixel locations per full pixel.
N
Nigel Tao 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
//
// For example, q == 4 leads to a bias of 8 and a mask of 0xfffffff0, or -16,
// because we want to round fractions of fixed.Int26_6 as:
//	-  0 to  7 rounds to 0.
//	-  8 to 23 rounds to 16.
//	- 24 to 39 rounds to 32.
//	- 40 to 55 rounds to 48.
//	- 56 to 63 rounds to 64.
// which means to add 8 and then bitwise-and with -16, in two's complement
// representation.
//
// When q ==  1, we want bias == 32 and mask == -64.
// When q ==  2, we want bias == 16 and mask == -32.
// When q ==  4, we want bias ==  8 and mask == -16.
// ...
// When q == 64, we want bias ==  0 and mask ==  -1. (The no-op case).
// The pattern is clear.
N
Nigel Tao 已提交
151 152 153 154
func subPixels(q int) (value uint32, bias, mask fixed.Int26_6) {
	return uint32(q), 32 / fixed.Int26_6(q), -64 / fixed.Int26_6(q)
}

N
Nigel Tao 已提交
155 156 157 158
// glyphCacheEntry caches the arguments and return values of rasterize.
type glyphCacheEntry struct {
	key glyphCacheKey
	val glyphCacheVal
N
Nigel Tao 已提交
159 160
}

N
Nigel Tao 已提交
161
type glyphCacheKey struct {
N
Nigel Tao 已提交
162 163 164 165
	index  Index
	fx, fy uint8
}

N
Nigel Tao 已提交
166
type glyphCacheVal struct {
N
Nigel Tao 已提交
167 168 169 170
	advanceWidth fixed.Int26_6
	offset       image.Point
	gw           int
	gh           int
N
Nigel Tao 已提交
171 172
}

N
Nigel Tao 已提交
173 174 175 176 177
type indexCacheEntry struct {
	rune  rune
	index Index
}

N
Nigel Tao 已提交
178
// NewFace returns a new font.Face for the given Font.
N
Nigel Tao 已提交
179
func NewFace(f *Font, opts *Options) font.Face {
N
Nigel Tao 已提交
180
	a := &face{
N
Nigel Tao 已提交
181 182 183 184
		f:          f,
		hinting:    opts.hinting(),
		scale:      fixed.Int26_6(0.5 + (opts.size() * opts.dpi() * 64 / 72)),
		glyphCache: make([]glyphCacheEntry, opts.glyphCacheEntries()),
N
Nigel Tao 已提交
185 186 187 188
	}
	a.subPixelX, a.subPixelBiasX, a.subPixelMaskX = opts.subPixelsX()
	a.subPixelY, a.subPixelBiasY, a.subPixelMaskY = opts.subPixelsY()

N
Nigel Tao 已提交
189 190 191 192 193 194 195
	// Fill the cache with invalid entries. Valid glyph cache entries have fx
	// and fy in the range [0, 64). Valid index cache entries have rune >= 0.
	for i := range a.glyphCache {
		a.glyphCache[i].key.fy = 0xff
	}
	for i := range a.indexCache {
		a.indexCache[i].rune = -1
N
Nigel Tao 已提交
196 197 198 199
	}

	// Set the rasterizer's bounds to be big enough to handle the largest glyph.
	b := f.Bounds(a.scale)
200 201 202 203
	xmin := +int(b.Min.X) >> 6
	ymin := -int(b.Max.Y) >> 6
	xmax := +int(b.Max.X+63) >> 6
	ymax := -int(b.Min.Y-63) >> 6
204 205
	a.maxw = xmax - xmin
	a.maxh = ymax - ymin
N
Nigel Tao 已提交
206
	a.masks = image.NewAlpha(image.Rect(0, 0, a.maxw, a.maxh*len(a.glyphCache)))
207
	a.r.SetBounds(a.maxw, a.maxh)
N
Nigel Tao 已提交
208
	a.p = facePainter{a}
N
Nigel Tao 已提交
209 210 211 212 213

	return a
}

type face struct {
N
Nigel Tao 已提交
214 215 216
	f             *Font
	hinting       font.Hinting
	scale         fixed.Int26_6
N
Nigel Tao 已提交
217
	subPixelX     uint32
N
Nigel Tao 已提交
218 219
	subPixelBiasX fixed.Int26_6
	subPixelMaskX fixed.Int26_6
N
Nigel Tao 已提交
220
	subPixelY     uint32
N
Nigel Tao 已提交
221 222
	subPixelBiasY fixed.Int26_6
	subPixelMaskY fixed.Int26_6
N
Nigel Tao 已提交
223
	masks         *image.Alpha
N
Nigel Tao 已提交
224
	glyphCache    []glyphCacheEntry
N
Nigel Tao 已提交
225 226
	r             raster.Rasterizer
	p             raster.Painter
N
Nigel Tao 已提交
227
	paintOffset   int
N
Nigel Tao 已提交
228 229 230
	maxw          int
	maxh          int
	glyphBuf      GlyphBuf
N
Nigel Tao 已提交
231
	indexCache    [indexCacheLen]indexCacheEntry
N
Nigel Tao 已提交
232 233 234 235

	// TODO: clip rectangle?
}

N
Nigel Tao 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249
const indexCacheLen = 256

func (a *face) index(r rune) Index {
	const mask = indexCacheLen - 1
	c := &a.indexCache[r&mask]
	if c.rune == r {
		return c.index
	}
	i := a.f.Index(r)
	c.rune = r
	c.index = i
	return i
}

N
Nigel Tao 已提交
250 251 252
// Close satisfies the font.Face interface.
func (a *face) Close() error { return nil }

253 254 255 256 257 258 259 260 261 262 263
// Metrics satisfies the font.Face interface.
func (a *face) Metrics() font.Metrics {
	scale := float64(a.scale)
	fupe := float64(a.f.FUnitsPerEm())
	return font.Metrics{
		Height:  a.scale,
		Ascent:  fixed.Int26_6(math.Ceil(scale * float64(+a.f.ascent) / fupe)),
		Descent: fixed.Int26_6(math.Ceil(scale * float64(-a.f.descent) / fupe)),
	}
}

N
Nigel Tao 已提交
264 265
// Kern satisfies the font.Face interface.
func (a *face) Kern(r0, r1 rune) fixed.Int26_6 {
N
Nigel Tao 已提交
266 267
	i0 := a.index(r0)
	i1 := a.index(r1)
N
Nigel Tao 已提交
268
	kern := a.f.Kern(a.scale, i0, i1)
N
Nigel Tao 已提交
269 270 271 272 273 274 275 276
	if a.hinting != font.HintingNone {
		kern = (kern + 32) &^ 63
	}
	return kern
}

// Glyph satisfies the font.Face interface.
func (a *face) Glyph(dot fixed.Point26_6, r rune) (
277
	dr image.Rectangle, mask image.Image, maskp image.Point, advance fixed.Int26_6, ok bool) {
N
Nigel Tao 已提交
278

N
Nigel Tao 已提交
279 280 281 282 283 284 285
	// Quantize to the sub-pixel granularity.
	dotX := (dot.X + a.subPixelBiasX) & a.subPixelMaskX
	dotY := (dot.Y + a.subPixelBiasY) & a.subPixelMaskY

	// Split the coordinates into their integer and fractional parts.
	ix, fx := int(dotX>>6), dotX&0x3f
	iy, fy := int(dotY>>6), dotY&0x3f
N
Nigel Tao 已提交
286

N
Nigel Tao 已提交
287
	index := a.index(r)
N
Nigel Tao 已提交
288 289 290
	cIndex := uint32(index)
	cIndex = cIndex*a.subPixelX - uint32(fx/a.subPixelMaskX)
	cIndex = cIndex*a.subPixelY - uint32(fy/a.subPixelMaskY)
N
Nigel Tao 已提交
291
	cIndex &= uint32(len(a.glyphCache) - 1)
N
Nigel Tao 已提交
292
	a.paintOffset = a.maxh * int(cIndex)
N
Nigel Tao 已提交
293
	k := glyphCacheKey{
N
Nigel Tao 已提交
294 295 296
		index: index,
		fx:    uint8(fx),
		fy:    uint8(fy),
N
Nigel Tao 已提交
297
	}
N
Nigel Tao 已提交
298 299
	var v glyphCacheVal
	if a.glyphCache[cIndex].key != k {
N
Nigel Tao 已提交
300 301 302
		var ok bool
		v, ok = a.rasterize(index, fx, fy)
		if !ok {
303
			return image.Rectangle{}, nil, image.Point{}, 0, false
N
Nigel Tao 已提交
304
		}
N
Nigel Tao 已提交
305
		a.glyphCache[cIndex] = glyphCacheEntry{k, v}
N
Nigel Tao 已提交
306
	} else {
N
Nigel Tao 已提交
307
		v = a.glyphCache[cIndex].val
N
Nigel Tao 已提交
308 309
	}

N
Nigel Tao 已提交
310
	dr.Min = image.Point{
N
Nigel Tao 已提交
311 312
		X: ix + v.offset.X,
		Y: iy + v.offset.Y,
N
Nigel Tao 已提交
313 314
	}
	dr.Max = image.Point{
N
Nigel Tao 已提交
315 316
		X: dr.Min.X + v.gw,
		Y: dr.Min.Y + v.gh,
N
Nigel Tao 已提交
317
	}
318
	return dr, a.masks, image.Point{Y: a.paintOffset}, v.advanceWidth, true
N
Nigel Tao 已提交
319 320
}

321
func (a *face) GlyphBounds(r rune) (bounds fixed.Rectangle26_6, advance fixed.Int26_6, ok bool) {
N
Nigel Tao 已提交
322
	if err := a.glyphBuf.Load(a.f, a.scale, a.index(r), a.hinting); err != nil {
323 324
		return fixed.Rectangle26_6{}, 0, false
	}
325 326 327 328
	xmin := +a.glyphBuf.Bounds.Min.X
	ymin := -a.glyphBuf.Bounds.Max.Y
	xmax := +a.glyphBuf.Bounds.Max.X
	ymax := -a.glyphBuf.Bounds.Min.Y
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
	if xmin > xmax || ymin > ymax {
		return fixed.Rectangle26_6{}, 0, false
	}
	return fixed.Rectangle26_6{
		Min: fixed.Point26_6{
			X: xmin,
			Y: ymin,
		},
		Max: fixed.Point26_6{
			X: xmax,
			Y: ymax,
		},
	}, a.glyphBuf.AdvanceWidth, true
}

func (a *face) GlyphAdvance(r rune) (advance fixed.Int26_6, ok bool) {
N
Nigel Tao 已提交
345
	if err := a.glyphBuf.Load(a.f, a.scale, a.index(r), a.hinting); err != nil {
346 347 348 349 350
		return 0, false
	}
	return a.glyphBuf.AdvanceWidth, true
}

351 352 353
// rasterize returns the advance width, integer-pixel offset to render at, and
// the width and height of the given glyph at the given sub-pixel offsets.
//
N
Nigel Tao 已提交
354
// The 26.6 fixed point arguments fx and fy must be in the range [0, 1).
N
Nigel Tao 已提交
355
func (a *face) rasterize(index Index, fx, fy fixed.Int26_6) (v glyphCacheVal, ok bool) {
N
Nigel Tao 已提交
356
	if err := a.glyphBuf.Load(a.f, a.scale, index, a.hinting); err != nil {
N
Nigel Tao 已提交
357
		return glyphCacheVal{}, false
N
Nigel Tao 已提交
358 359
	}
	// Calculate the integer-pixel bounds for the glyph.
360 361 362 363
	xmin := int(fx+a.glyphBuf.Bounds.Min.X) >> 6
	ymin := int(fy-a.glyphBuf.Bounds.Max.Y) >> 6
	xmax := int(fx+a.glyphBuf.Bounds.Max.X+0x3f) >> 6
	ymax := int(fy-a.glyphBuf.Bounds.Min.Y+0x3f) >> 6
N
Nigel Tao 已提交
364
	if xmin > xmax || ymin > ymax {
N
Nigel Tao 已提交
365
		return glyphCacheVal{}, false
N
Nigel Tao 已提交
366 367 368 369 370 371
	}
	// A TrueType's glyph's nodes can have negative co-ordinates, but the
	// rasterizer clips anything left of x=0 or above y=0. xmin and ymin are
	// the pixel offsets, based on the font's FUnit metrics, that let a
	// negative co-ordinate in TrueType space be non-negative in rasterizer
	// space. xmin and ymin are typically <= 0.
372 373
	fx -= fixed.Int26_6(xmin << 6)
	fy -= fixed.Int26_6(ymin << 6)
N
Nigel Tao 已提交
374 375
	// Rasterize the glyph's vectors.
	a.r.Clear()
N
Nigel Tao 已提交
376 377
	pixOffset := a.paintOffset * a.maxw
	clear(a.masks.Pix[pixOffset : pixOffset+a.maxw*a.maxh])
N
Nigel Tao 已提交
378
	e0 := 0
379 380
	for _, e1 := range a.glyphBuf.Ends {
		a.drawContour(a.glyphBuf.Points[e0:e1], fx, fy)
N
Nigel Tao 已提交
381 382
		e0 = e1
	}
383
	a.r.Rasterize(a.p)
N
Nigel Tao 已提交
384
	return glyphCacheVal{
N
Nigel Tao 已提交
385 386 387 388 389
		a.glyphBuf.AdvanceWidth,
		image.Point{xmin, ymin},
		xmax - xmin,
		ymax - ymin,
	}, true
390 391 392 393 394 395
}

func clear(pix []byte) {
	for i := range pix {
		pix[i] = 0
	}
N
Nigel Tao 已提交
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
}

// drawContour draws the given closed contour with the given offset.
func (a *face) drawContour(ps []Point, dx, dy fixed.Int26_6) {
	if len(ps) == 0 {
		return
	}

	// The low bit of each point's Flags value is whether the point is on the
	// curve. Truetype fonts only have quadratic Bézier curves, not cubics.
	// Thus, two consecutive off-curve points imply an on-curve point in the
	// middle of those two.
	//
	// See http://chanae.walon.org/pub/ttf/ttf_glyphs.htm for more details.

	// ps[0] is a truetype.Point measured in FUnits and positive Y going
	// upwards. start is the same thing measured in fixed point units and
	// positive Y going downwards, and offset by (dx, dy).
	start := fixed.Point26_6{
415 416
		X: dx + ps[0].X,
		Y: dy - ps[0].Y,
N
Nigel Tao 已提交
417 418 419 420 421 422
	}
	var others []Point
	if ps[0].Flags&0x01 != 0 {
		others = ps[1:]
	} else {
		last := fixed.Point26_6{
423 424
			X: dx + ps[len(ps)-1].X,
			Y: dy - ps[len(ps)-1].Y,
N
Nigel Tao 已提交
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
		}
		if ps[len(ps)-1].Flags&0x01 != 0 {
			start = last
			others = ps[:len(ps)-1]
		} else {
			start = fixed.Point26_6{
				X: (start.X + last.X) / 2,
				Y: (start.Y + last.Y) / 2,
			}
			others = ps
		}
	}
	a.r.Start(start)
	q0, on0 := start, true
	for _, p := range others {
		q := fixed.Point26_6{
441 442
			X: dx + p.X,
			Y: dy - p.Y,
N
Nigel Tao 已提交
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
		}
		on := p.Flags&0x01 != 0
		if on {
			if on0 {
				a.r.Add1(q)
			} else {
				a.r.Add2(q0, q)
			}
		} else {
			if on0 {
				// No-op.
			} else {
				mid := fixed.Point26_6{
					X: (q0.X + q.X) / 2,
					Y: (q0.Y + q.Y) / 2,
				}
				a.r.Add2(q0, mid)
			}
		}
		q0, on0 = q, on
	}
	// Close the curve.
	if on0 {
		a.r.Add1(start)
	} else {
		a.r.Add2(q0, start)
	}
}
N
Nigel Tao 已提交
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

// facePainter is like a raster.AlphaSrcPainter, with an additional Y offset
// (face.paintOffset) to the painted spans.
type facePainter struct {
	a *face
}

func (p facePainter) Paint(ss []raster.Span, done bool) {
	m := p.a.masks
	b := m.Bounds()
	b.Min.Y = p.a.paintOffset
	b.Max.Y = p.a.paintOffset + p.a.maxh
	for _, s := range ss {
		s.Y += p.a.paintOffset
		if s.Y < b.Min.Y {
			continue
		}
		if s.Y >= b.Max.Y {
			return
		}
		if s.X0 < b.Min.X {
			s.X0 = b.Min.X
		}
		if s.X1 > b.Max.X {
			s.X1 = b.Max.X
		}
		if s.X0 >= s.X1 {
			continue
		}
		base := (s.Y-m.Rect.Min.Y)*m.Stride - m.Rect.Min.X
		p := m.Pix[base+s.X0 : base+s.X1]
502
		color := uint8(s.Alpha >> 8)
N
Nigel Tao 已提交
503 504 505 506 507
		for i := range p {
			p[i] = color
		}
	}
}