bitandblack/font-loader

Load fonts, for example from the Google Fonts Library.

0.3.0 2024-11-14 13:25 UTC

This package is auto-updated.

Last update: 2024-11-14 13:25:47 UTC


README

PHP from Packagist Latest Stable Version Total Downloads License

Bit&Black Font Loader

Load 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.