Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minho42/heic-converter-js
Node CLI program that converts HEIC to jpg
https://github.com/minho42/heic-converter-js
heic-to-jpg
Last synced: 16 days ago
JSON representation
Node CLI program that converts HEIC to jpg
- Host: GitHub
- URL: https://github.com/minho42/heic-converter-js
- Owner: minho42
- Created: 2023-12-22T12:33:03.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-08T13:27:52.000Z (10 months ago)
- Last Synced: 2024-03-08T14:38:37.056Z (10 months ago)
- Topics: heic-to-jpg
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CLI program that converts HEIC to jpg
### Install
```shell
npm i
```### Use
```shell
# image.HEIC -> image.jpg
node index.js -f image.HEIC
node index.js -f image.HEIC -q 0.5
```### Help
```shell
❯ node index.js -h
Usage: index [options]Options:
-f, --filename
-q, --quality quality (default: "0.5")
-h, --help display help for command```