1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-03 08:38:39 +00:00

fix space width for IE

This commit is contained in:
Lu Wang 2013-05-04 23:09:49 +08:00
parent 769f081609
commit 12f2b97445

View File

@ -493,6 +493,19 @@ void HTMLRenderer::embed_font(const string & filepath, GfxFont * font, FontInfo
}
}
if(info.space_width == 0)
{
/*
* Internet Explorer will ignore `word-spacing` if
* the width of the 'space' glyph is 0
*
* usually the em_size is 1000 or 2048,
* and space_width==0 often means no spaces are used in the PDF
* so setting it to be 1 should be safe
*/
info.space_width = 1;
}
if(ctu)
ctu->decRefCnt();
}