rmg

Rust: Tiny Manga Reader

Demo

https://github.com/rsuu/rmg/blob/main/assets/2022-06-29.mp4

Install

```bash

cargo

cargo install rmg

git

git clone --depth 1 https://github.com/rsuu/rmg cd rmg cargo build --release

github

Check here: https://github.com/rsuu/rmg/releases/ ```

Usage

```bash rmg ./tests/files/1.tar

OR

rmg --size 600,600 ./tests/files/1.tar

OR

rmg --config ./tests/files/config.rs --size 600,600 ./tests/files/1.tar ```

KeyMap

|#|#| |:-|:-| j/Down | down k/Up | up h/Left | left r/Right | right q | quit

Configuration

Note: You have to create the file by yourself.

default configuration

```text fn main() { Base { size: (900, 900), font: None, renamepad: 0, invertmouse: false, filter: "Hamming",

};

Keymap {
    up: 'k',
    down: 'j',
    left: 'h',
    right: 'l',
    exit: 'q',
};

} ```

Features

```bash

Add support for heic

cargo run --release -F "de_heic" ```