We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would love to be able to create ligatures with this app.
The text was updated successfully, but these errors were encountered:
Bits'n'Picas doesn't support ligature and many other OT features. However, you can use feaLib in fonttools to add OT features.
feaLib
fonttools
# Generate ttf bitsnpicas convertbitmap -f ttf -o FONT_base.ttf FONT.kbitx # Generate otb bitsnpicas convertbitmap -f otb -o FONT_base.otb FONT.kbitx # Add OpenType features (Bits'n'Picas cannot do this itself) fonttools feaLib -o FONT.ttf FONT.fea FONT_base.ttf fonttools feaLib -o FONT.otb FONT.fea FONT_base.otb rm *_base.ttf rm *_base.otb
Here is a sample feature file which replaces yi into glyph u4e00 (一):
yi
u4e00
一
feature rlig { lookup LigaTest { sub y i by u4e00; } LigaTest; } rlig;
Here and here is the docs of the .fea file and the feaLib tool.
.fea
Sorry, something went wrong.
No branches or pull requests
I would love to be able to create ligatures with this app.
The text was updated successfully, but these errors were encountered: