1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 18:30:34 +00:00
This commit is contained in:
Lu Wang 2013-02-11 15:57:10 +08:00
parent 9673bd760e
commit e3e732971b
2 changed files with 1 additions and 4 deletions

1
TODO
View File

@ -1,4 +1,3 @@
optimize font_size & transform matrix tracking
print css for draw/link/image... print css for draw/link/image...
== Future: == == Future: ==

View File

@ -254,10 +254,9 @@ protected:
} new_line_state; } new_line_state;
// track the original (unscaled) values to determine scaling and merge lines
// current position // current position
double cur_tx, cur_ty; // real text position, in text coords double cur_tx, cur_ty; // real text position, in text coords
// cur_font_size and cur_text_tm are unscaled (the same as in PDF)
double cur_font_size; double cur_font_size;
// this is CTM * TextMAT in PDF // this is CTM * TextMAT in PDF
// [4] and [5] are ignored, // [4] and [5] are ignored,
@ -280,7 +279,6 @@ protected:
// font & size // font & size
const FontInfo * cur_font_info; const FontInfo * cur_font_info;
// managers store values actually used in HTML (i.e. scaled) // managers store values actually used in HTML (i.e. scaled)
//////////////////////////////////////////////// ////////////////////////////////////////////////
TransformMatrixManager transform_matrix_manager; TransformMatrixManager transform_matrix_manager;