bitandblack / font-loader
Font Loader
0.1.3
2020-11-27 14:55 UTC
Requires
- php: >=7.2
- ext-json: *
- ext-mbstring: *
- psr/log: ^1.1
Requires (Dev)
- monolog/monolog: ^2.0
- phpstan/phpstan: ^0.12
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2023-05-19 11:40:16 UTC
README
Font Loader
Loads fonts, for example from the Google Fonts Library.
Installation
This library is made for the use with Composer. Add it to your project by running $ composer require bitandblack/font-loader
.
Usage
Create a font request at first. It needs to know the font library you want to use, the font family name and all font styles you want to load:
<?php
use BitAndBlack\FontLoader\FontRequest;
use BitAndBlack\FontLoader\Library\GoogleFonts;
$fontRequest = new FontRequest(
new GoogleFonts(),
'Roboto',
'300',
'300italic'
);
Create a loader instance then and run the process:
<?php
use BitAndBlack\FontLoader\Loader\FileLoader;
$fontLoader = new FileLoader($fontRequest);
$fontLoader->setOutputDir(__DIR__);
$fontLoader->run();
Help
If you have any questions feel free to contact us under hello@bitandblack.com
.