initial commit
This commit is contained in:
commit
4b60ece582
327 changed files with 28286 additions and 0 deletions
27
lib/fontParser/tables/hhea.h
Normal file
27
lib/fontParser/tables/hhea.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef HHEA_H
|
||||
#define HHEA_H
|
||||
|
||||
#include "table.h"
|
||||
|
||||
class Hhea : public Table
|
||||
{
|
||||
public:
|
||||
Hhea(const std::string& p_tag, uint32_t p_checkSum, uint32_t p_offset, uint32_t p_length);
|
||||
~Hhea();
|
||||
|
||||
void read(const std::string & path) override;
|
||||
|
||||
int16_t ascent;
|
||||
int16_t descent;
|
||||
int16_t lineGap;
|
||||
uint16_t advanceWidthMax;
|
||||
int16_t minLeftSideBearing;
|
||||
int16_t minRightSideBearing;
|
||||
int16_t xMaxExtent;
|
||||
int16_t caretSlopeRise;
|
||||
int16_t caretSlopeRun;
|
||||
int16_t caretOffset;
|
||||
uint16_t numOfLongHorMetrics;
|
||||
};
|
||||
|
||||
#endif // HHEA_H
|
Loading…
Add table
Add a link
Reference in a new issue