Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bbonkr/example.imageconvert
https://github.com/bbonkr/example.imageconvert
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bbonkr/example.imageconvert
- Owner: bbonkr
- Created: 2023-08-30T10:32:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-10T03:05:26.000Z (8 months ago)
- Last Synced: 2024-04-09T21:56:05.259Z (7 months ago)
- Language: C#
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example of converting image file
## Configuration
Create appsettings.Development.json file on src/Example.ImageConverter.App directory.
- `App__Source`: Directory which images files placed
- `App__Filter`: Filter of image file to convert```json
{
"App": {
"Source": "/path/to/images/directory",
"Filter": "*.png"
}
}
```> - Find ` .png`` file from `/path/to/images/directory` directory then converts them.
> - Output is `/path/to/images/directory/output`## Run
Please use `.NET Core Launch (console)` on your vscode Run and debug.