windows - What does this bit of MSDN documentation mean? -
the first parameter enumfontfamiliesex
function, according the msdn documentation, described as:
hdc [in]
handle device context enumerate fonts.
- what mean?
- what device context mean?
- why should device context related fonts?
question (3) legitimately difficult thing find explanation for, reason simple enough:
some devices provide own font support. example, postscript printer allow use postscript fonts. same fonts won't usable when rendering on-screen, or printer without postscript support. example plotter (which motorized pen) requires vector fonts fixed stroke thickness, raster fonts can't used such device.
if you're interested in device-specific font support, you'll want know getdevicecaps
function.
Comments
Post a Comment