https://github.com/sssooonnnggg/alpha_bleeding
A tool used to fix white border issues by doing alpha bleeding.
https://github.com/sssooonnnggg/alpha_bleeding
alpha-bleeding image-artifacts image-dilate image-fix image-processing image-white-border image-white-edge
Last synced: about 1 year ago
JSON representation
A tool used to fix white border issues by doing alpha bleeding.
- Host: GitHub
- URL: https://github.com/sssooonnnggg/alpha_bleeding
- Owner: sssooonnnggg
- Created: 2023-10-14T03:52:09.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-25T02:55:49.000Z (over 2 years ago)
- Last Synced: 2024-04-25T15:20:47.544Z (about 2 years ago)
- Topics: alpha-bleeding, image-artifacts, image-dilate, image-fix, image-processing, image-white-border, image-white-edge
- Language: Rust
- Homepage: https://github.com/sssooonnnggg/alpha_bleeding
- Size: 1.19 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Alpha bleeding
A tool used to fix white border issues by doing alpha bleeding.
Similar project:
- https://github.com/urraka/alpha-bleeding
- https://github.com/dmi7ry/alpha-bleeding-d
### Use as a CLI
```
Usage: alpha_bleeding [INPUT] [OUPTUT]
Arguments:
[INPUT] The path of the image to be fixed.
[OUTPUT] The path where the fixed image will be saved. If an output path is not provided, the original input image will be replaced with the fixed one.
```
### Use as a library
```rs
use alpha_bleeding::alpha_bleeding;
alpha_bleeding("origin.png", "fixed.png");
```