#include <fontinfo.h>
Definition at line 62 of file fontinfo.h.
tesseract::FontInfo::FontInfo |
( |
| ) |
|
|
inline |
Definition at line 63 of file fontinfo.h.
GenericVector< FontSpacingInfo * > * spacing_vec
tesseract::FontInfo::~FontInfo |
( |
| ) |
|
|
inline |
Definition at line 80 of file fontinfo.h.
82 (*spacing_vec)[uch_id] = spacing_info;
GenericVector< FontSpacingInfo * > * spacing_vec
bool tesseract::FontInfo::DeSerialize |
( |
bool |
swap, |
|
|
FILE * |
fp |
|
) |
| |
Definition at line 34 of file fontinfo.cpp.
35 if (!
read_info(fp,
this, swap))
return false;
bool read_info(FILE *f, FontInfo *fi, bool swap)
bool read_spacing_info(FILE *f, FontInfo *fi, bool swap)
Definition at line 86 of file fontinfo.h.
GenericVector< FontSpacingInfo * > * spacing_vec
bool tesseract::FontInfo::get_spacing |
( |
UNICHAR_ID |
prev_uch_id, |
|
|
UNICHAR_ID |
uch_id, |
|
|
int * |
spacing |
|
) |
| const |
|
inline |
Definition at line 93 of file fontinfo.h.
96 const FontSpacingInfo *prev_fsi = this->
get_spacing(prev_uch_id);
97 const FontSpacingInfo *fsi = this->
get_spacing(uch_id);
98 if (prev_fsi ==
NULL || fsi ==
NULL)
return false;
100 for (; i < prev_fsi->kerned_unichar_ids.size(); ++i) {
101 if (prev_fsi->kerned_unichar_ids[i] == uch_id)
break;
103 if (i < prev_fsi->kerned_unichar_ids.size()) {
104 *spacing = prev_fsi->kerned_x_gaps[i];
106 *spacing = prev_fsi->x_gap_after + fsi->x_gap_before;
const FontSpacingInfo * get_spacing(UNICHAR_ID uch_id) const
void tesseract::FontInfo::init_spacing |
( |
int |
unicharset_size | ) |
|
|
inline |
Definition at line 73 of file fontinfo.h.
GenericVector< FontSpacingInfo * > * spacing_vec
bool tesseract::FontInfo::is_bold |
( |
| ) |
const |
|
inline |
bool tesseract::FontInfo::is_fixed_pitch |
( |
| ) |
const |
|
inline |
bool tesseract::FontInfo::is_fraktur |
( |
| ) |
const |
|
inline |
bool tesseract::FontInfo::is_italic |
( |
| ) |
const |
|
inline |
bool tesseract::FontInfo::is_serif |
( |
| ) |
const |
|
inline |
bool tesseract::FontInfo::Serialize |
( |
FILE * |
fp | ) |
const |
Definition at line 27 of file fontinfo.cpp.
bool write_info(FILE *f, const FontInfo &fi)
bool write_spacing_info(FILE *f, const FontInfo &fi)
char* tesseract::FontInfo::name |
uinT32 tesseract::FontInfo::properties |
inT32 tesseract::FontInfo::universal_id |
The documentation for this struct was generated from the following files: