integration done and testing done

This commit is contained in:
saqib mir
2026-06-08 16:28:10 +05:30
parent 998f32c0a4
commit c27a80f840
11 changed files with 365 additions and 82 deletions
@@ -97,12 +97,16 @@ struct TextRun {
uint32_t flags = 0;
double fontSize = 0.0;
std::string internalFontId;
bool isEmbedded = false;
std::string type;
std::vector<Glyph> glyphs;
double x = 0.0, y = 0.0, w = 0.0, h = 0.0;
};
struct TextLine {
std::vector<TextRun> runs;
std::vector<Glyph> glyphs;
double angle = 0.0;
double baselineY = 0.0;
double x = 0.0, y = 0.0, w = 0.0, h = 0.0;
};