bitandblack/font-loader

Load fonts, for example from the Google Fonts Library.

Package info

bitbucket.org/wirbelwild/font-loader

Homepage

pkg:composer/bitandblack/font-loader

Statistics

Installs: 139

Dependents: 0

Suggesters: 0

0.3.0 2024-11-14 13:25 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 922a3021b5a1d75850b74eb2361f4430a65bd4ee

This package is auto-updated.

Last update: 2026-06-23 20:16:27 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.