https://github.com/adrianromero/fonticon
FontIcon is a JavaFX library to use Font Icons.
https://github.com/adrianromero/fonticon
Last synced: about 2 months ago
JSON representation
FontIcon is a JavaFX library to use Font Icons.
- Host: GitHub
- URL: https://github.com/adrianromero/fonticon
- Owner: adrianromero
- License: apache-2.0
- Created: 2014-09-29T18:01:44.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-01-03T08:21:20.000Z (over 5 years ago)
- Last Synced: 2025-03-29T10:51:18.086Z (2 months ago)
- Language: Java
- Homepage:
- Size: 1.12 MB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
FontIcon [](https://jitpack.io/#adrianromero/fonticon)
========FontIcon is a JavaFX library to use Font Icons.
This library includes the most popular icon fonts to be used easily in JavaFX projects. It also includes utilities to colorize, style and animate the icons with a minimal effort. See the examples to start using the icons.

Examples
========```java
IconBuilder.create(IconFontGlyph.FA_SOLID_BOOK, 48.0).styleClass("icon-size").build();
IconBuilder.create(IconFontGlyph.FA_SOLID_BRAIN, 52.0).color(Color.LIGHTGRAY).shine(Color.YELLOW).build();
IconBuilder.create(IconFontGlyph.FA_REGULAR_IMAGE, 52.0).apply(new LightOn(Color.AQUA)).build();
IconBuilder.create(IconFontGlyph.FA_REGULAR_LEMON, 52.0).apply(new LightOff()).build();
IconBuilder.create(IconFontGlyph.FA_BRANDS_CREATIVE_COMMONS, 52.0).color(Color.RED).apply(new ShadowHigh(Color.BLUE)).build();
IconBuilder.create(IconFontGlyph.WI_THERMOMETER, 52.0).apply(new ShadowHole(Color.AZURE)).build();
```Install
=======To install the library add:
```gradle
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.adrianromero:fonticon:2.0.210'
}
```Acknowledgments
===============Font Awesome 5.12.0 by @davegandy
https://github.com/FortAwesome/Font-Awesome
(Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)Weather Icons 2.0.10 by Erik Flowers
https://erikflowers.github.io/weather-icons
(Fonts: SIL OFL 1.1, Code: MIT License, Documentation: CC BY 3.0)License
=======Font Icon is licensed under the Apache License, Version 2.0, January 2004.