forked from koreader/kindlepdfviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft.c
192 lines (160 loc) · 4.92 KB
/
ft.c
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
/*
KindlePDFViewer: FreeType font rastering for UI
Copyright (C) 2011 Hans-Werner Hilse <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string.h>
//#include <stdio.h>
#include <stdint.h>
#include <ft2build.h>
#include FT_FREETYPE_H
#include "blitbuffer.h"
/* for font access: */
#include <pdf/mupdf-internal.h>
#include "ft.h"
FT_Library freetypelib;
static int newFace(lua_State *L) {
const char *filename = luaL_checkstring(L, 1);
int pxsize = luaL_optint(L, 2, 16*64);
FT_Face *face = (FT_Face*) lua_newuserdata(L, sizeof(FT_Face));
luaL_getmetatable(L, "ft_face");
lua_setmetatable(L, -2);
FT_Error error = FT_New_Face(freetypelib, filename, 0, face);
if(error) {
return luaL_error(L, "freetype error");
}
error = FT_Set_Pixel_Sizes(*face, 0, pxsize);
if(error) {
error = FT_Done_Face(*face);
return luaL_error(L, "freetype error");
}
if((*face)->charmap == NULL) {
//TODO
//fprintf(stderr, "no unicode charmap found, to be implemented.\n");
}
return 1;
}
static int renderGlyph(lua_State *L) {
FT_Face *face = (FT_Face*) luaL_checkudata(L, 1, "ft_face");
int ch = luaL_checkint(L, 2);
FT_Error error = FT_Load_Char(*face, ch, FT_LOAD_RENDER);
if(error) {
return luaL_error(L, "freetype error");
}
int w = (*face)->glyph->bitmap.width;
int h = (*face)->glyph->bitmap.rows;
lua_newtable(L);
BlitBuffer *bb;
int result = newBlitBufferNative(L, w, h, &bb);
if(result != 1) {
return result;
}
lua_setfield(L, -2, "bb");
uint8_t *dst = bb->data;
int y;
int x;
for(y = 0; y < h; y++) {
uint8_t *src = (*face)->glyph->bitmap.buffer + y * (*face)->glyph->bitmap.pitch;
for(x = 0; x < (w/2); x++) {
*dst = (src[0] & 0xF0) | (src[1] >> 4);
src+=2;
dst++;
}
if(w & 1) {
*dst = *src & 0xF0;
dst++;
}
}
lua_pushinteger(L, (*face)->glyph->bitmap_left);
lua_setfield(L, -2, "l");
lua_pushinteger(L, (*face)->glyph->bitmap_top);
lua_setfield(L, -2, "t");
lua_pushinteger(L, (*face)->glyph->metrics.horiAdvance >> 6);
lua_setfield(L, -2, "r");
lua_pushinteger(L, (*face)->glyph->advance.x >> 6);
lua_setfield(L, -2, "ax");
lua_pushinteger(L, (*face)->glyph->advance.y >> 6);
lua_setfield(L, -2, "ay");
return 1;
}
static int hasKerning(lua_State *L) {
FT_Face *face = (FT_Face*) luaL_checkudata(L, 1, "ft_face");
if(FT_HAS_KERNING((*face))) {
lua_pushinteger(L, 1);
} else {
lua_pushinteger(L, 0);
}
return 1;
}
static int getKerning(lua_State *L) {
FT_Face *face = (FT_Face*) luaL_checkudata(L, 1, "ft_face");
int left = FT_Get_Char_Index(*face, luaL_checkint(L, 2));
int right = FT_Get_Char_Index(*face, luaL_checkint(L, 3));
FT_Vector kerning;
FT_Error error = FT_Get_Kerning(*face, left, right, FT_KERNING_DEFAULT, &kerning);
if(error) {
return luaL_error(L, "freetype error when getting kerning (l=%d, r=%d)", left, right);
}
lua_pushinteger(L, kerning.x >> 6);
return 1;
}
static int getHeightAndAscender(lua_State *L) {
FT_Face *face = (FT_Face*) luaL_checkudata(L, 1, "ft_face");
double pixels_height,pixels_ascender;
double em_size, y_scale;
/* compute floating point scale factors */
em_size = 1.0 * (*face)->units_per_EM;
y_scale = (*face)->size->metrics.y_ppem / em_size;
/* convert design distances to floating point pixels */
pixels_height = (*face)->height * y_scale;
pixels_ascender = (*face)->ascender * y_scale;
lua_pushnumber(L, pixels_height);
lua_pushnumber(L, pixels_ascender);
return 2;
}
static int doneFace(lua_State *L) {
FT_Face *face = (FT_Face*) luaL_checkudata(L, 1, "ft_face");
if(*face != NULL) {
FT_Error error = FT_Done_Face(*face);
if(error) {
return luaL_error(L, "freetype error when freeing face");
}
*face = NULL;
}
return 0;
}
static const struct luaL_Reg ft_face_meth[] = {
{"renderGlyph", renderGlyph},
{"hasKerning", hasKerning},
{"getKerning", getKerning},
{"getHeightAndAscender", getHeightAndAscender},
{"done", doneFace},
{"__gc", doneFace},
{NULL, NULL}
};
static const struct luaL_Reg ft_func[] = {
{"newFace", newFace},
{NULL, NULL}
};
int luaopen_ft(lua_State *L) {
int error = FT_Init_FreeType(&freetypelib);
if(error) {
return luaL_error(L, "freetype error on initialization");
}
luaL_newmetatable(L, "ft_face");
lua_pushstring(L, "__index");
lua_pushvalue(L, -2);
lua_settable(L, -3);
luaL_register(L, NULL, ft_face_meth);
luaL_register(L, "freetype", ft_func);
return 1;
}