diff options
author | Mattias Andrée <maandree@kth.se> | 2021-10-29 23:00:19 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-10-29 23:00:19 +0200 |
commit | 52f4424f2dcffa5e20e55c52a5777ce9212d05c5 (patch) | |
tree | 74bde882b97c6cdd5e8fdfd1342fbb5dcef0d00b /libparsepcf_get_metrics.c | |
download | libparsepcf-52f4424f2dcffa5e20e55c52a5777ce9212d05c5.tar.gz libparsepcf-52f4424f2dcffa5e20e55c52a5777ce9212d05c5.tar.bz2 libparsepcf-52f4424f2dcffa5e20e55c52a5777ce9212d05c5.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libparsepcf_get_metrics.c')
-rw-r--r-- | libparsepcf_get_metrics.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/libparsepcf_get_metrics.c b/libparsepcf_get_metrics.c new file mode 100644 index 0000000..5e2fbe0 --- /dev/null +++ b/libparsepcf_get_metrics.c @@ -0,0 +1,50 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +int +libparsepcf_get_metrics(const char *file, size_t size, + const struct libparsepcf_table *table, + struct libparsepcf_metrics *out, size_t first, size_t count) +{ + size_t pos, i; + int msb = table->format & LIBPARSEPCF_BYTE; + int compressed = table->format & LIBPARSEPCF_COMPRESSED_METRICS; + + (void) size; + + pos = table->offset + (compressed ? 6 : 8); + pos += first * (compressed ? 5 : 12); + + if (compressed) { + for (i = 0; i < count; i++, pos += 5) { + out[i].left_side_bearing = (int16_t)((int)((const uint8_t *)file)[pos + 0] - 128); + out[i].right_side_bearing = (int16_t)((int)((const uint8_t *)file)[pos + 1] - 128); + out[i].character_width = (int16_t)((int)((const uint8_t *)file)[pos + 2] - 128); + out[i].character_ascent = (int16_t)((int)((const uint8_t *)file)[pos + 3] - 128); + out[i].character_descent = (int16_t)((int)((const uint8_t *)file)[pos + 4] - 128); + out[i].character_attributes = 0; + if (out[i].left_side_bearing > out[i].right_side_bearing || + (int32_t)out[i].character_ascent < -(int32_t)out[i].character_descent) + goto ebfont; + } + } else { + for (i = 0; i < count; i++, pos += 12) { + out[i].left_side_bearing = PARSE_INT16(&file[pos + 0], msb); + out[i].right_side_bearing = PARSE_INT16(&file[pos + 2], msb); + out[i].character_width = PARSE_INT16(&file[pos + 4], msb); + out[i].character_ascent = PARSE_INT16(&file[pos + 6], msb); + out[i].character_descent = PARSE_INT16(&file[pos + 8], msb); + out[i].character_attributes = PARSE_UINT16(&file[pos + 10], msb); + if (out[i].left_side_bearing > out[i].right_side_bearing || + (int32_t)out[i].character_ascent < -(int32_t)out[i].character_descent) + goto ebfont; + } + } + + return 0; + +ebfont: + errno = EBFONT; + return -1; +} |