mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
dont' draw hidden object
This commit is contained in:
parent
d8dc5fbceb
commit
8fd6eb1bd8
@ -241,6 +241,12 @@ void HTMLRenderer::drawString(GfxState * state, GooString * s)
|
||||
return;
|
||||
}
|
||||
|
||||
//hidden
|
||||
if(state->getRender() & 3 == 3)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// see if the line has to be closed due to state change
|
||||
check_state_change(state);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user