line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
/* |
2
|
|
|
|
|
|
|
Copyright (C) 2016-2017 Alexander Borisov |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or |
5
|
|
|
|
|
|
|
modify it under the terms of the GNU Lesser General Public |
6
|
|
|
|
|
|
|
License as published by the Free Software Foundation; either |
7
|
|
|
|
|
|
|
version 2.1 of the License, or (at your option) any later version. |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful, |
10
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
11
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12
|
|
|
|
|
|
|
Lesser General Public License for more details. |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public |
15
|
|
|
|
|
|
|
License along with this library; if not, write to the Free Software |
16
|
|
|
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Author: lex.borisov@gmail.com (Alexander Borisov) |
19
|
|
|
|
|
|
|
*/ |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
#include "myfont/head.h" |
22
|
|
|
|
|
|
|
|
23
|
0
|
|
|
|
|
|
mystatus_t myfont_load_table_head(myfont_font_t* mf, uint8_t* font_data, size_t data_size) |
24
|
|
|
|
|
|
|
{ |
25
|
0
|
|
|
|
|
|
memset(&mf->table_head, 0, sizeof(myfont_table_head_t)); |
26
|
|
|
|
|
|
|
|
27
|
0
|
0
|
|
|
|
|
if(mf->cache.tables_offset[MyFONT_TKEY_head] == 0) |
28
|
0
|
|
|
|
|
|
return MyFONT_STATUS_OK; |
29
|
|
|
|
|
|
|
|
30
|
0
|
|
|
|
|
|
myfont_table_head_t *thead = &mf->table_head; |
31
|
0
|
|
|
|
|
|
const uint32_t table_offset = mf->cache.tables_offset[MyFONT_TKEY_head]; |
32
|
|
|
|
|
|
|
|
33
|
0
|
0
|
|
|
|
|
if(data_size < (table_offset + 16 + 4 + 16 + 8 + 4 + 6)) |
34
|
0
|
|
|
|
|
|
return MyFONT_STATUS_ERROR_TABLE_UNEXPECTED_ENDING; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
/* get current data */ |
37
|
0
|
|
|
|
|
|
uint8_t *data = &font_data[table_offset]; |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
/* u32 */ |
40
|
0
|
|
|
|
|
|
thead->version = myfont_read_u32(&data); |
41
|
0
|
|
|
|
|
|
thead->fontRevision = myfont_read_u32(&data); |
42
|
0
|
|
|
|
|
|
thead->checkSumAdjustment = myfont_read_u32(&data); |
43
|
0
|
|
|
|
|
|
thead->magicNumber = myfont_read_u32(&data); |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
/* u16 */ |
46
|
0
|
|
|
|
|
|
thead->flags = myfont_read_u16(&data); |
47
|
0
|
|
|
|
|
|
thead->unitsPerEm = myfont_read_u16(&data); |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
/* u32 */ |
50
|
0
|
|
|
|
|
|
thead->created[0] = myfont_read_u32(&data); |
51
|
0
|
|
|
|
|
|
thead->created[1] = myfont_read_u32(&data); |
52
|
0
|
|
|
|
|
|
thead->modified[0] = myfont_read_u32(&data); |
53
|
0
|
|
|
|
|
|
thead->modified[1] = myfont_read_u32(&data); |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
/* 16 */ |
56
|
0
|
|
|
|
|
|
thead->xMin = myfont_read_16(&data); |
57
|
0
|
|
|
|
|
|
thead->yMin = myfont_read_16(&data); |
58
|
0
|
|
|
|
|
|
thead->xMax = myfont_read_16(&data); |
59
|
0
|
|
|
|
|
|
thead->yMax = myfont_read_16(&data); |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
/* u16 */ |
62
|
0
|
|
|
|
|
|
thead->macStyle = myfont_read_u16(&data); |
63
|
0
|
|
|
|
|
|
thead->lowestRecPPEM = myfont_read_u16(&data); |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
/* 16 */ |
66
|
0
|
|
|
|
|
|
thead->fontDirectionHint = myfont_read_16(&data); |
67
|
0
|
|
|
|
|
|
thead->indexToLocFormat = myfont_read_16(&data); |
68
|
0
|
|
|
|
|
|
thead->glyphDataFormat = myfont_read_16(&data); |
69
|
|
|
|
|
|
|
|
70
|
0
|
|
|
|
|
|
return MyFONT_STATUS_OK; |
71
|
|
|
|
|
|
|
} |
72
|
|
|
|
|
|
|
|
73
|
0
|
|
|
|
|
|
float myfont_head_yMax_pixel(struct myfont_font *mf, float font_size) |
74
|
|
|
|
|
|
|
{ |
75
|
0
|
|
|
|
|
|
return (float)mf->table_head.yMax * font_size / ((float)mf->table_head.unitsPerEm); |
76
|
|
|
|
|
|
|
} |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|