Sets whether to always hint glyphs. If forceAutoHinting is set, instructs the font manager to always hint glyphs. Only affects platforms that use FreeType as the font manager. @param value setting to always hint glyphs @return this
(boolean value)
| 180 | * @return this |
| 181 | */ |
| 182 | public Font setAutoHintingForced(boolean value) { |
| 183 | _resetMetrics(); |
| 184 | Stats.onNativeCall(); |
| 185 | _nSetAutoHintingForced(_ptr, value); |
| 186 | return this; |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Requests, but does not require, to use bitmaps in fonts instead of outlines. |
no test coverage detected