ttf-opensans is a Python package vending the Open Sans font by Steve Matteson.
Project description
ttf-opensans is a Python package vending the Open Sans font by Steve Matteson.
It is intended for when you want to use the Open Sans font family without having to worry about availability on the target system.
The Open Sans font family and this package is licensed under the Apache License, Version 2.0.
Installation
This package can be installed through the following command:
python3 -m pip install -U ttf-opensans
Usage
The fonts are provided through instances of the TTFFont class.
You can either access a specific font style directly:
import ttf_opensans
my_font = ttf_opensans.OPENSANS_SEMIBOLDITALIC
Or you can use the helper function to find the most appropriate font style:
from ttf_opensans import opensans
my_font = opensans(font_weight=600, italic=True)
Once you have the font you want, you can access various attributes on it:
print(my_font.name) # "OpenSans-SemiBoldItalic"
print(my_font.weight) # 600
print(my_font.italic) # True
print(my_font.path) # pathlib.Path("<...>/site_packages/ttf_opensans/ttf/OpenSans-SemiBoldItalic.ttf")
You can also open the font for reading directly:
with my_font.open() as fp:
font_data = fp.read()
If you use the Python Imaging Library (Pillow), you can also directly get an ImageFont instance:
from PIL import Image, ImageDraw, ImageFont
with Image.new("RGB", (512, 512), (255, 255, 255)) as im:
draw = ImageDraw.Draw(im)
imagefont = my_font.imagefont(size=48)
draw.text(font=imagefont, fill=(0, 0, 0), xy=(0, 0), text="Hello World!")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ttf-opensans-2020.10.30.tar.gz
.
File metadata
- Download URL: ttf-opensans-2020.10.30.tar.gz
- Upload date:
- Size: 602.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbc6e8e1f354a8a20970cb9e2a6fbd10cf2e855c9194e1d59268487d7d4d1e83 |
|
MD5 | 8a3278d2be0f9eb5b7864cd1fc51b827 |
|
BLAKE2b-256 | adee50958ddd4139ddca88670873596d648ab1f4c90193cf3abb1cc82cd9bdad |
File details
Details for the file ttf_opensans-2020.10.30-py3-none-any.whl
.
File metadata
- Download URL: ttf_opensans-2020.10.30-py3-none-any.whl
- Upload date:
- Size: 599.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ce65f171eb60fc16c15b31fc714cc5735533acb43b0637e5cebb612e2a9ac9c |
|
MD5 | b13197f8358a17b0cb4764068d826291 |
|
BLAKE2b-256 | 00760a5a5f4700d1c2ee85e7afa209c3b53bbe5540bf7c06da605229e3676257 |