内容简介:Find fonts which can show a specified character and preview them in browser.This is port from my early python script called
FontFor
Find fonts which can show a specified character and preview them in browser.
This is port from my early python script called which_fonts_support , but with some improvements:
- Write in Rust, safe and faster
- Use
Fontconfiglibrary instead of depends onfc-listcommand installed - Support preview in shell (powered by
FreeType), no browser needed
Install or Update
cargo install -f fontfor
Usage
Basic
$ fontfor א Font(s) support the character "א"(U+05D0, 1488, 0xD7 0x90): Arial with 4 styles Arial Hebrew with 3 styles Arial Hebrew Desk Interface with 3 styles Arial Hebrew Scholar with 3 styles Arial Unicode MS with 1 style Corsiva Hebrew with 2 styles Courier New with 4 styles DejaVu Sans with 8 styles FreeMono with 4 styles FreeSans with 4 styles FreeSerif with 4 styles HanaMinA with 1 style LastResort with 1 style Lucida Grande with 2 styles Microsoft Sans Serif with 1 style New Peninim MT with 4 styles Raanana with 2 styles TW-Kai with 1 style TW-Sung with 1 style Tahoma with 2 styles Times New Roman with 4 styles
Character Input Format
You can use the following formats for the character:
- Character:
א - Unicode scalar value
-
U+XXXXXX:U+5d0,U+05d0,U+0005d0 - Direct input
1488 0o2720 0b010111010000
-
- UTF8 bytes:
0xd790
Show All Font Styles
add -v flag to show all font style.
We don't show screenshot picture here because it's a bit long.
Preview in Browser
Add -p flag to enable browser preview:
Preview in Shell
Add -t flag to enter tui mode for preview in shell:
And you can change render mode to ASCII(10 Level):
ASCII(70 Level):
Or moon-render mode:
LICENSE
GPLv3 or later.
See COPYING .
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
C++程序设计原理与实践
(美)Bjarne Stroustrup / 王刚 等 / 机械工业出版社 / 2010.7 / 108.00元
本书是经典程序设计思想与C++开发实践的完美结合,是C++之父回归校园后对C++编程原理和技巧的全新阐述。书中全面地介绍了程序设计基本原理,包括基本概念、设计和编程技术、语言特性以及标准库等,教你学会如何编写具有输入、输出、计算以及简单图形显示等功能的程序。此外,本书通过对C++思想和历史的讨论、对经典实例(如矩阵运算、文本处理、测试以及嵌入式系统程序设计)的展示,以及对C语言的简单描述,为你呈现......一起来看看 《C++程序设计原理与实践》 这本书的介绍吧!