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.
- Host: GitHub
- URL: https://github.com/naymmmm/ormseparatev3
- Owner: Naymmmm
- License: mit
- Created: 2025-08-01T10:46:26.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-08-01T12:29:33.000Z (11 months ago)
- Last Synced: 2025-10-08T21:36:50.353Z (9 months ago)
- Topics: converter, file, jpg, png, rgb, rust, rust-lang, separator
- Language: Rust
- Homepage: https://crates.io/crates/ormseparatev3
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.