Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Anbani/TextArt
Georgian Text Art Generator
https://github.com/Anbani/TextArt
anbani art generator georgian text
Last synced: 4 days ago
JSON representation
Georgian Text Art Generator
- Host: GitHub
- URL: https://github.com/Anbani/TextArt
- Owner: Anbani
- License: gpl-3.0
- Created: 2022-06-05T08:13:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-25T17:45:55.000Z (over 2 years ago)
- Last Synced: 2024-07-04T09:29:57.084Z (4 months ago)
- Topics: anbani, art, generator, georgian, text
- Language: JavaScript
- Homepage: https://anbani.ge/textart
- Size: 168 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TextArt
Text Art generator by Anbani.ge
## Demo
Play around with the derivative project here ჻
Available as an `npx` executable as well!
```bash
npx anbani-textart "ჰელოუ" "Anbani Block Small"
your text -------^ ^--- optional font key
```
![npx demo](https://gach.ml/assets/projects/textart-vid.gif)## EZ Quickstart
Play with this fiddle or create `index.html` file, open in text editor and paste in this code below.
```html
window.onload = () => {
document.querySelector('#art').textContent = window['anbani-textart'].generate(
'Anbani Block Regular',
'გამარჯობა'
)
}