1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 04:50:09 +00:00

working on pixel accuracy

This commit is contained in:
Lu Wang 2012-08-05 23:26:40 +08:00
parent c7ddf60bac
commit 65c56c4ec1

View File

@ -107,9 +107,11 @@ function show_pages()\
var idx = 0;\ var idx = 0;\
var f = function(){\ var f = function(){\
if (idx < pages.length) {\ if (idx < pages.length) {\
try{\
pages[idx].style.display='block';\ pages[idx].style.display='block';\
++idx;\ }catch(e){}\
setTimeout(f,100);\ ++idx;\
setTimeout(f,100);\
}\ }\
};\ };\
f();\ f();\
@ -396,7 +398,7 @@ void HTMLRenderer::endString(GfxState *state) {
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) 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() << "px;"
<< "left:" << cur_string->getX() << "px;" << "left:" << cur_string->getX() << "px;"
<< "line-height:" << (cur_state->getFont()->getAscent() * cur_state->getFontSize()) << "px;" << "top:" << (pageHeight - cur_string->getY() - cur_state->getFont()->getAscent() * cur_state->getFontSize()) << "px;"
; ;
// letter & word spacing // letter & word spacing