fur
v7.2.0
Published
Quick generator for banner, favicon, etc...
Downloads
509
Maintainers
Readme
fur
Quick generator for banner, favicon, etc...
// Generate favicon with command options.
$ fur favicon "my-favicon.png" --color b --font n --text oh --shape c
Getting started
Requirements
Installation
fur is available as an npm package.
# Install fur as a global module.
$ npm install fur -g
Or you can install it without -g
option and use Programmatic API.
Available Commands
$ fur -h
Usage: fur [options] [command]
Options:
-V, --version output the version number
-h, --help display help for command
Commands:
banner [options] <filename> Generate a banner.
favicon [options] <filename> Generate a favicon.
help [command] display help for command
Programmatic API
fur provides programmatic API which enables you to execute fur commands from Node.js program.
const fur = require('fur')
;(async () => {
await fur.banner('my-banner.svg', {
text: 'coz',
color: 'o',
font: 'aa',
style: 'plain',
shape: 'k'
})
})()
Generating Logo Banner
Banner Examples
| Image | Command |
| ----- | ------- |
| | $ fur banner "fur-banner.png" --text="FUR" --color="#ff9100" --font="bt" --shape="a"
|
| | $ fur banner "coz-banner.png" --text="coz" --color="#00b560" --font="aa" --shape="b"
|
| | $ fur banner "apeman-banner.png" --text="apeman" --color="n" --font="p" --shape="a"
|
| | $ fur banner "pudding-banner.png" --text="PUDDING" --color="bi" --font="cn" --shape="e"
|
| | $ fur banner "pon-banner.png" --text="pon" --color="ah" --font="ar" --shape="f"
|
| | $ fur banner "rfunc-banner.png" --text="rfunc" --color="ac" --font="e" --shape="f"
|
These examples are available here.
Banner Usage
$ fur banner -h
Usage: fur banner [options] <filename>
Generate a banner.
Options:
-c, --color <color> Color expression string or color theme name.
-s, --shape <shape> Banner style.
-f, --font <font> Font file name or font theme name.
-F, --font-size <fontSize> Size of font.
-H, --height <height> Banner height.
-o, --format <format> File format. 'svg' or 'png'.
-t, --text <text> Banner text.
-W, --width <width> Banner width.
-v, --verbose Emit verbose log.
-h, --help display help for command
Generating Favicon
Favicon Examples
| Image | Command |
| ----- | ------- |
| | $ fur favicon "f-favicon.png" --text="F" --color="#ff9100" --font="bt" --shape="a"
|
| | $ fur favicon "c-favicon.png" --text="c" --color="#00b560" --font="aa" --shape="c"
|
| | $ fur favicon "ap-favicon.png" --text="ap" --color="n" --font="p" --shape="g"
|
| | $ fur favicon "p-favicon.png" --text="P" --color="bi" --font="cn" --shape="a"
|
| | $ fur favicon "pon-favicon.png" --text="pon" --color="ah" --font="ar" --shape="g"
|
| | $ fur favicon "rf-favicon.png" --text="rf" --color="ac" --font="e" --shape="c" --font-size="148"
|
| | $ fur favicon "mw-favicon.png" --text="mw" --color="n" --font="p" --shape="i" --font-size="92"
|
| | $ fur favicon "api-favicon.png" --text="api" --color="n" --font="p" --shape="i" --font-size="92"
|
| | $ fur favicon "a-favicon.png" --text="a" --color="n" --font="p" --shape="g" --font-size="92"
|
These examples are available here.
Favicon Usage
$ fur favicon -h
Usage: fur favicon [options] <filename>
Generate a favicon.
Options:
-c, --color <color> Color expression string or color theme name.
-f, --font <font> Font file name or font theme name.
-F, --font-size <fontSize> Size of font.
-S, --size <size> Favicon size.
-s, --shape <shape> Banner style.
-t, --text <text> Favicon text.
-o, --format <format> File format. 'svg' or 'png'.
-v, --verbose Emit verbose log.
-h, --help display help for command
Theme Gallery
About this project
Author
Donation
Support this project and others by okunishinishi via gratipay.
License
This software is released under the MIT License.