An open API service indexing awesome lists of open source software.

https://github.com/naymmmm/ormseparatev3

Easily separate RGB channels with Regex naming and other file formats.
https://github.com/naymmmm/ormseparatev3

converter file jpg png rgb rust rust-lang separator

Last synced: 5 months ago
JSON representation

Easily separate RGB channels with Regex naming and other file formats.

Awesome Lists containing this project

README

          

# ORMSeparateV3

Easily separate RGB channels with Regex naming and other file formats.

## Installation

Cargo is used for installation. You can either run
```sh
$ cargo install ormseparatev3
```
or download directly from releases (recommended)

## Usage
Basic usage can be accomplished by dragging a folder or image onto the executable. You can use it in the command line by adding the folder or image as an argument. E.g.
```sh
$ ormseparatev3 file.png
```

## Configuration

By default, after running the binary; it will create a config file (toml) if it doesn't already exist in the binary location. The configuration is simple.
```toml
default_profile = "orm"

[profiles.orm]
name = "orm"
file_regex = "/orm/i"
output_format = "png"

[[profiles.orm.channels]]
name = "Occlusion"
channel = 0

[[profiles.orm.channels]]
name = "Roughness"
channel = 1

[[profiles.orm.channels]]
name = "Metallic"
channel = 2
```
You should get it now.