This commit is contained in:
Lu Wang 2012-08-05 23:54:15 +08:00
parent 528797171c
commit 215b377b88
2 changed files with 4 additions and 3 deletions

View File

@ -17,6 +17,7 @@ pdf2htmlEX is optimized for recent versions of moderm web browsers such as Mozil
Features
----------------------------
* Text Selection
* Font embedding
* Proper styling
* Optimization for Web

View File

@ -396,9 +396,9 @@ void HTMLRenderer::endString(GfxState *state) {
// TODO: optimize text matrix search/install
html_fout << boost::format("<div class=\"l f%|1$x| s%|2$x| t%|3$x|\" style=\"") % cur_fn_id % cur_fs_id % install_transform_matrix(cur_text_mat)
<< "bottom:" << cur_string->getY() << "px;"
<< "bottom:" << cur_string->getY() + cur_state->getFont()->getDescent() * cur_state->getFontSize() << "px;"
<< "left:" << cur_string->getX() << "px;"
<< "top:" << (pageHeight - cur_string->getY() - cur_state->getFont()->getAscent() * cur_state->getFontSize()) << "px;"
// << "top:" << (pageHeight - cur_string->getY() - cur_state->getFont()->getAscent() * cur_state->getFontSize()) << "px;"
;
// letter & word spacing
@ -413,7 +413,7 @@ void HTMLRenderer::endString(GfxState *state) {
html_fout << "\"";
double x,y;
cur_state->transform(cur_state->getCurX(), cur_state->getCurY(), &x, &y);
html_fout << boost::format(" data-x=\"%1%\" data-y=\"%2%")%x%y;
html_fout << boost::format(" data-x=\"%1%\" data-y=\"%2%\" hs=\"%3%")%x%y%(cur_state->getHorizScaling());
}
html_fout << "\">";