| Crates.io | rmg |
| lib.rs | rmg |
| version | 0.5.11 |
| created_at | 2021-09-26 00:19:21.057199+00 |
| updated_at | 2023-06-02 09:22:53.527607+00 |
| description | Rust: Tiny And Fast Manga/Image Viewer |
| homepage | https://crates.io/crates/rmg |
| repository | https://github.com/rsuu/rmg |
| max_upload_size | |
| id | 456344 |
| size | 5,218,821 |
Rust: Tiny And Fast Manga/Image Viewer

# github
Check here: https://github.com/rsuu/rmg/releases/
# cargo
cargo install rmg
# git
git clone --depth 1 https://github.com/rsuu/rmg
cd rmg
cargo build --release
rmg --help
rmg tests/bit/png
rmg file.tar
rmg file.gif
rmg --size 600x600 file.tar
rmg --size 100x600 --config ./tests/other/config.rs file.tar
| Key | |
|---|---|
| k/Up | move up |
| j/Down | move down |
| h/Left | move left |
| r/Right | move right |
| q | quit |
config file: https://raw.githubusercontent.com/rsuu/rmg/main/tests/other/config.rs
NOTE: You have to create the file first.
$HOME/.config/rmg/config.rs$HOME/Library/Application Support/rmg/config.rsC:\Users\<USER>\AppData\<USER>\rmg\config.rs| Format | Supported | Default | Dependency | Mode |
|---|---|---|---|---|
| .jpg | ✅ | ✅ | Scroll/Once | |
| .png | ✅ | ✅ | Scroll/Once | |
| .heic / .avif | 🔬 | ❌ | libheif | Scroll/Once |
| .gif | 🔬 | ✅ | Once | |
| .aseprite | 🔬 | ❌ | Once | |
| .svg | 🔬 | ❌ | Scroll/Once |
| Format | Supported | Default | Dependency |
|---|---|---|---|
| directory | ✅ | ✅ | |
| .tar | ✅ | ✅ | tar |
| .zip / .cbz | ✅ | ✅ | zip |
# Add support for heic
cargo run --release -F "de_heic"
# for svg AND aseprite
cargo run --release -F "de_svg" -F "de_aseprite"
# [CpuExtensions](https://docs.rs/fast_image_resize/latest/fast_image_resize/index.html#resize-rgb8-image-u8x3-4928x3279--852x567)
cargo run --release -F "avx2"
# for avx2
cargo run --release -F "sse4_1"
# for sse4_1
cargo run --release -F "full"