-
Notifications
You must be signed in to change notification settings - Fork 7
/
goplaceholder.go
136 lines (116 loc) · 4 KB
/
goplaceholder.go
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
/*
* Copyright (c) 2014 Michael Wendland
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Authors:
* Michael Wendland <[email protected]>
*/
/*
package goplaceholder implements a simple library to generate placeholder
images using freetype-go.
*/
package goplaceholder
import (
"errors"
"image"
"image/color"
"image/draw"
"io/ioutil"
"math"
"strconv"
"code.google.com/p/freetype-go/freetype"
"code.google.com/p/freetype-go/freetype/raster"
)
const (
maxTextBoundsToImageRatioY = 0.23
maxTextBoundsToImageRatioX = 0.64
dpi = 72.00
testFontSize = 1.00 // use heigher values (>=100) when hinting enabled
)
// Placeholder returns a placeholder image with the given text or, if text was
// an empty string, with the image bounds in the form "800x600".
func Placeholder(text, ttfPath string, foreground, background color.RGBA, width, height int) (image.Image, error) {
if width < 0 || height < 0 {
return nil, errors.New("negative values not allowed")
}
if width == 0 && height == 0 {
return nil, errors.New("either width or height needs to be > 0")
}
if width == 0 {
width = height
} else if height == 0 {
height = width
}
if text == "" {
text = strconv.Itoa(width) + " x " + strconv.Itoa(height)
}
fontBytes, err := ioutil.ReadFile(ttfPath)
if err != nil {
return nil, err
}
font, err := freetype.ParseFont(fontBytes)
if err != nil {
return nil, err
}
fg_img := image.NewUniform(foreground)
bg_img := image.NewUniform(background)
testImg := image.NewRGBA(image.Rect(0, 0, 0, 0))
c := freetype.NewContext()
c.SetDPI(dpi)
c.SetFont(font)
c.SetFontSize(testFontSize)
c.SetSrc(fg_img)
c.SetDst(testImg)
c.SetClip(testImg.Bounds())
c.SetHinting(freetype.NoHinting)
// first draw with testFontSize to get the text extent
var textExtent raster.Point
drawPoint := freetype.Pt(0, int(c.PointToFix32(testFontSize)>>8))
textExtent, err = c.DrawString(text, drawPoint)
if err != nil {
return nil, err
}
// calculate font scales to stay within the bounds
scaleX := float64(c.PointToFix32(float64(width)*maxTextBoundsToImageRatioX)) / float64(textExtent.X)
scaleY := float64(c.PointToFix32(float64(height)*maxTextBoundsToImageRatioY)) / float64(textExtent.Y)
fontsize := testFontSize * math.Min(scaleX, scaleY)
// draw with scaled fontsize to get the real text extent. This could also be
// done by scaling up the textExtent from the previous drawing but it's less
// precise.
c.SetFontSize(fontsize)
drawPoint = freetype.Pt(0, 0)
textExtent, err = c.DrawString(text, drawPoint)
if err != nil {
return nil, err
}
// finally draw the centered text
drawPoint = freetype.Pt(
int(c.PointToFix32(float64(width)/2.0)-textExtent.X/2)>>8,
int(c.PointToFix32(float64(height)/2.0+fontsize/2.6))>>8)
img := image.NewRGBA(image.Rect(0, 0, width, height))
draw.Draw(img, img.Bounds(), bg_img, image.ZP, draw.Src)
c.SetDst(img)
c.SetClip(img.Bounds())
_, err = c.DrawString(text, drawPoint)
if err != nil {
return nil, err
}
return img, nil
}