Name and size of the system user interface font (default system font)
이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
getOSfont returns the name and size of the system user interface font (default system font).
Graphical user interfaces developed with MATLAB often lack the look and feel of native applications, which is in part due to the fact that they do not use the user interface font of the operating system on which they are running. getOSfont resolves this issue by returning the name and size of the system UI font for a variety of platforms and OS versions, including all platforms officially supported by R2014b and above.
[OSFont, OSFontSize] = getOSfont(OS, OSVersion) returns the name and size (in points) of the system UI font of the operating system OS in version OSVersion. If the system UI font is not available to MATLAB, it is replaced by a similar font and a warning is issued. If the OS is not supported, OSFONT and OSFONTSIZE are returned empty. If the font selected by getOSfont is not available on the system, OSFONT is returned empty.
OS is a character vector containing the name of the operating system in lowercase letters. The following operating systems are supported:
- 'windows' (starting with Windows 3.1)
- 'macos' (all OS X and macOS versions)
- 'ubuntu' (starting with Ubuntu 10.10)
- 'centos' and 'redhat' (starting with version 6.8)
OSVersion is a numeric vector representing the version number of the operating system. For example, OSVersion = [6, 1, 7601] corresponds to version 6.1.7601.
getOSfont is typically used in tandem with detectOS.
Example:
% avoid error if OS cannot be determined
try
[OS, OSVersion] = detectOS;
catch
OS = '';
OSVersion = [];
end
[OSFont, OSFontSize] = getOSfont(OS, OSVersion);
% if returned empty, fall back on factory settings
if isempty(OSFont)
OSFont = get(groot, 'factoryUicontrolFontName');
end
if isempty(OSFontSize)
OSFontSize = get(groot, 'factoryUicontrolFontSize');
endgetOSfont is compatible with MATLAB R2013a and later releases.
Any feedback or help in extending the code to other operating systems/versions is welcome!
인용 양식
Jorg Woehl (2026). getOSfont (https://github.com/JorgWoehl/getOSfont/releases/tag/v1.1.3.1), GitHub. 검색 날짜: .
일반 정보
- 버전 1.1.3.1 (4.4 KB)
-
GitHub에서 라이선스 보기
MATLAB 릴리스 호환 정보
- R2013a 이상 릴리스와 호환
플랫폼 호환성
- Windows
- macOS
- Linux
GitHub 디폴트 브랜치를 사용하는 버전은 다운로드할 수 없음
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.1.3.1 | See release notes for this release on GitHub: https://github.com/JorgWoehl/getOSfont/releases/tag/v1.1.3.1 |
||
| 1.1.3 | See release notes for this release on GitHub: https://github.com/JorgWoehl/getOSfont/releases/tag/v1.1.3 |
||
| 1.1.0.0 | Refine input validation
|
||
| 1.0.0.0 |
Added link to detectOS
|
