1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-08-26 05:08:10 +00:00
This commit is contained in:
Lu Wang 2013-01-26 19:45:48 +08:00
parent be5186592d
commit 4798945c1d

View File

@ -533,7 +533,6 @@ void HTMLRenderer::drawString(GfxState * state, GooString * s)
double dx = 0; double dx = 0;
double dy = 0; double dy = 0;
double dxerr = 0;
double dx1,dy1; double dx1,dy1;
double ox, oy; double ox, oy;
@ -605,7 +604,7 @@ void HTMLRenderer::drawString(GfxState * state, GooString * s)
cur_tx += dx; cur_tx += dx;
cur_ty += dy; cur_ty += dy;
draw_tx += dx + dxerr * cur_font_size * hs; draw_tx += dx;
draw_ty += dy; draw_ty += dy;
} }