summaryrefslogtreecommitdiff
path: root/poppler
diff options
context:
space:
mode:
authorJason Crain <jason@aquaticape.us>2013-03-09 08:44:36 -0600
committerCarlos Garcia Campos <carlosgc@gnome.org>2013-03-23 19:59:49 +0100
commit83cf2d3d3ecce6340d858a2ee037cd5120ac1db5 (patch)
tree716a449473a8b16c039c54f2e1b5972ddfa42698 /poppler
parenta01e2d41fcb638fe340bd3d4d22bd13db245e0fd (diff)
TextOutputDev: Set text matrix when painting selection
https://bugs.freedesktop.org/show_bug.cgi?id=61042
Diffstat (limited to 'poppler')
-rw-r--r--poppler/TextOutputDev.cc30
-rw-r--r--poppler/TextOutputDev.h3
2 files changed, 25 insertions, 8 deletions
diff --git a/poppler/TextOutputDev.cc b/poppler/TextOutputDev.cc
index b0b53fc5..cd1358c9 100644
--- a/poppler/TextOutputDev.cc
+++ b/poppler/TextOutputDev.cc
@@ -246,6 +246,7 @@ TextWord::TextWord(GfxState *state, int rotA, double fontSizeA) {
edge = NULL;
charPos = NULL;
font = NULL;
+ textMat = NULL;
len = size = 0;
spaceAfter = gFalse;
next = NULL;
@@ -273,11 +274,12 @@ TextWord::~TextWord() {
gfree(edge);
gfree(charPos);
gfree(font);
+ gfree(textMat);
}
void TextWord::addChar(GfxState *state, TextFontInfo *fontA, double x, double y,
double dx, double dy, int charPosA, int charLen,
- CharCode c, Unicode u) {
+ CharCode c, Unicode u, Matrix textMatA) {
GfxFont *gfxFont;
double ascent, descent;
ascent = descent = 0; // make gcc happy
@@ -289,12 +291,14 @@ void TextWord::addChar(GfxState *state, TextFontInfo *fontA, double x, double y,
edge = (double *)greallocn(edge, (size + 1), sizeof(double));
charPos = (int *)greallocn(charPos, size + 1, sizeof(int));
font = (TextFontInfo **)greallocn(font, size, sizeof(TextFontInfo *));
+ textMat = (Matrix *)greallocn(textMat, size, sizeof(Matrix));
}
text[len] = u;
charcode[len] = c;
charPos[len] = charPosA;
charPos[len + 1] = charPosA + charLen;
font[len] = fontA;
+ textMat[len] = textMatA;
if (len == 0) {
if ((gfxFont = fontA->gfxFont)) {
@@ -448,6 +452,7 @@ void TextWord::merge(TextWord *word) {
edge = (double *)greallocn(edge, (size + 1), sizeof(double));
charPos = (int *)greallocn(charPos, size + 1, sizeof(int));
font = (TextFontInfo **)greallocn(font, size, sizeof(TextFontInfo *));
+ textMat = (Matrix *)greallocn(textMat, size, sizeof(Matrix));
}
for (i = 0; i < word->len; ++i) {
text[len + i] = word->text[i];
@@ -455,6 +460,7 @@ void TextWord::merge(TextWord *word) {
edge[len + i] = word->edge[i];
charPos[len + i] = word->charPos[i];
font[len + i] = word->font[i];
+ textMat[len + i] = word->textMat[i];
}
edge[len + word->len] = word->edge[word->len];
charPos[len + word->len] = word->charPos[word->len];
@@ -2267,6 +2273,7 @@ void TextPage::addChar(GfxState *state, double x, double y,
GBool overlap;
int i;
int wMode;
+ Matrix mat;
// subtract char and word spacing from the dx,dy values
sp = state->getCharSpace();
@@ -2361,6 +2368,10 @@ void TextPage::addChar(GfxState *state, double x, double y,
beginWord(state);
}
+ state->getFontTransMat(&mat.m[0], &mat.m[1], &mat.m[2], &mat.m[3]);
+ mat.m[4] = x1;
+ mat.m[5] = y1;
+
// page rotation and/or transform matrices can cause text to be
// drawn in reverse order -- in this case, swap the begin/end
// coordinates and break text into individual chars
@@ -2380,7 +2391,7 @@ void TextPage::addChar(GfxState *state, double x, double y,
w1 /= uLen;
h1 /= uLen;
for (i = 0; i < uLen; ++i) {
- curWord->addChar(state, curFont, x1 + i*w1, y1 + i*h1, w1, h1, charPos, nBytes, c, u[i]);
+ curWord->addChar(state, curFont, x1 + i*w1, y1 + i*h1, w1, h1, charPos, nBytes, c, u[i], mat);
}
}
charPos += nBytes;
@@ -4270,9 +4281,7 @@ TextSelectionPainter::TextSelectionPainter(TextPage *page,
out->startPage (0, state);
out->setDefaultCTM (state->getCTM());
- state->setTextMat(1, 0, 0, -1, 0, 0);
state->setFillColorSpace(new GfxDeviceRGBColorSpace());
-
}
TextSelectionPainter::~TextSelectionPainter()
@@ -4333,11 +4342,18 @@ void TextSelectionPainter::visitWord (TextWord *word, int begin, int end,
while (begin < end) {
TextFontInfo *font = word->font[begin];
font->gfxFont->incRefCnt();
- state->setFont(font->gfxFont, word->fontSize);
+ Matrix *mat = &word->textMat[begin];
+
+ state->setTextMat(mat->m[0], mat->m[1], mat->m[2], mat->m[3], 0, 0);
+ state->setFont(font->gfxFont, 1);
out->updateFont(state);
int fEnd = begin + 1;
- while (fEnd < end && font->matches(word->font[fEnd]))
+ while (fEnd < end && font->matches(word->font[fEnd]) &&
+ mat->m[0] == word->textMat[fEnd].m[0] &&
+ mat->m[1] == word->textMat[fEnd].m[1] &&
+ mat->m[2] == word->textMat[fEnd].m[2] &&
+ mat->m[3] == word->textMat[fEnd].m[3])
fEnd++;
/* The only purpose of this string is to let the output device query
@@ -4346,7 +4362,7 @@ void TextSelectionPainter::visitWord (TextWord *word, int begin, int end,
out->beginString(state, string);
for (int i = begin; i < fEnd; i++) {
- out->drawChar(state, word->edge[i], word->base, 0, 0, 0, 0,
+ out->drawChar(state, word->textMat[i].m[4], word->textMat[i].m[5], 0, 0, 0, 0,
word->charcode[i], 1, NULL, 0);
}
out->endString(state);
diff --git a/poppler/TextOutputDev.h b/poppler/TextOutputDev.h
index 100f23e0..77facbc3 100644
--- a/poppler/TextOutputDev.h
+++ b/poppler/TextOutputDev.h
@@ -122,7 +122,7 @@ public:
// Add a character to the word.
void addChar(GfxState *state, TextFontInfo *fontA, double x, double y,
double dx, double dy, int charPosA, int charLen,
- CharCode c, Unicode u);
+ CharCode c, Unicode u, Matrix textMatA);
// Merge <word> onto the end of <this>.
void merge(TextWord *word);
@@ -187,6 +187,7 @@ private:
int len; // length of text/edge/charPos/font arrays
int size; // size of text/edge/charPos/font arrays
TextFontInfo **font; // font information for each char
+ Matrix *textMat; // transformation matrix for each char
double fontSize; // font size
GBool spaceAfter; // set if there is a space between this
// word and the next word on the line