Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/versbinarii/pic2lcd
CLI tool for converting images into a LCD friendly format
https://github.com/versbinarii/pic2lcd
cli cli-tool image image-conversion lcd rust
Last synced: about 2 months ago
JSON representation
CLI tool for converting images into a LCD friendly format
- Host: GitHub
- URL: https://github.com/versbinarii/pic2lcd
- Owner: VersBinarii
- License: mit
- Created: 2021-04-07T20:59:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-07T23:07:36.000Z (over 3 years ago)
- Last Synced: 2024-08-09T21:32:05.951Z (5 months ago)
- Topics: cli, cli-tool, image, image-conversion, lcd, rust
- Language: Rust
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pic2lcd
Command line tool for converting images to LCD friendly format# Installation
## Precompiled binaries
There are precompiled binaries available for
MacOS, Arch Linux, Debian and Ubuntu available in [release section](https://github.com/VersBinarii/pic2lcd/releases).## From source using cargo
```
git clone https://github.com/VersBinarii/pic2lcd
cd pic2lcd
cargo install --path .
```# Usage
```
USAGE:
pic2lcd [FLAGS] [OPTIONS]
FLAGS:
--force-resize Perform resizing without preserving aspect ratio
--help Prints help information
-V, --version Prints version information
-v, --verbose
OPTIONS:
--array-name [default: data]
-h, --height Output image might be lower than specified value to preserve aspect ratio. Use
--force-resize if you dont care about aspect ratio.
-O, --out-format [default: Rgb565] [possible values: Monochrome, Rgb565]
-o, --output [default: out.h]
-w, --width Output image might be lower than specified value to preserve aspect ratio. Use
--force-resize if you dont care about aspect ratio.
ARGS:
```