awtk/docs/how_to_scale_font.md
2021-07-12 07:49:04 +08:00

14 lines
412 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 如何设置字体的全局缩放比例
有时需要支持 Accessibility要求对字体进行全局缩放以便实现"大字体"和"小字体"的选项。在 AWTK 中,可以调用函数 system\_info\_set\_font\_scale 来实现。
```
system_info_set_font_scale(system_info(), font_scale);
```
font\_scale 的取值:
* 1 表示正常大小。
* 大于 1 表示放大。
* 小于 1 表示缩小。