update the pipiline

This commit is contained in:
saqib mir
2026-06-11 18:19:26 +05:30
parent 9159426037
commit b52890818b
10 changed files with 1080 additions and 5 deletions
@@ -89,6 +89,7 @@ struct Glyph {
double originY = 0.0;
double bboxX = 0.0, bboxY = 0.0, bboxW = 0.0, bboxH = 0.0;
double angle = 0.0;
int pageObjectIndex = -1;
};
struct TextRun {
@@ -100,6 +101,7 @@ struct TextRun {
bool isEmbedded = false;
std::string type;
std::vector<Glyph> glyphs;
std::vector<int> objectIndices;
double x = 0.0, y = 0.0, w = 0.0, h = 0.0;
};