Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ananthakumaran/barlix
Barcode generator for Elixir
https://github.com/ananthakumaran/barlix
barcode-generator elixir
Last synced: about 16 hours ago
JSON representation
Barcode generator for Elixir
- Host: GitHub
- URL: https://github.com/ananthakumaran/barlix
- Owner: ananthakumaran
- License: mit
- Created: 2016-08-12T11:19:55.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-10-17T13:35:05.000Z (about 1 year ago)
- Last Synced: 2024-12-26T05:07:13.264Z (8 days ago)
- Topics: barcode-generator, elixir
- Language: Elixir
- Size: 87.9 KB
- Stars: 42
- Watchers: 7
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Barlix
![BARLIX](./assets/logo.png "BARLIX")
[![.github/workflows/ci.yml](https://github.com/ananthakumaran/barlix/actions/workflows/ci.yml/badge.svg)](https://github.com/ananthakumaran/barlix/actions/workflows/ci.yml)
[![Module Version](https://img.shields.io/hexpm/v/barlix.svg)](https://hex.pm/packages/barlix)
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/barlix/)
[![Total Download](https://img.shields.io/hexpm/dt/barlix.svg)](https://hex.pm/packages/barlix)
[![License](https://img.shields.io/hexpm/l/barlix.svg)](https://github.com/ananthakumaran/barlix/blob/master/LICENSE.md)
[![Last Updated](https://img.shields.io/github/last-commit/ananthakumaran/barlix.svg)](https://github.com/ananthakumaran/barlix/commits/master)Barcode generator for Elixir.
## Installation
The package can be installed by adding `:barlix` to your list of dependencies in
`deps/0` function of `mix.exs` file:```elixir
{:barlix, "~> 0.6"}
```## Example
```elixir
Barlix.Code39.encode!("BARLIX") |> Barlix.PNG.print(file: "/tmp/barcode.png")
```## Copyright and License
Copyright (c) 2016 Anantha Kumaran
This work is free. You can redistribute it and/or modify it under the
terms of the MIT License. See the [LICENSE.md](./LICENSE.md) file for more details.