bitandblack/font-loader

0.1.3 2020-11-27 14:55 UTC

This package is auto-updated.

Last update: 2024-04-19 11:16:42 UTC


README

PHP from Packagist Codacy Badge Latest Stable Version Total Downloads License

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.