Aurélie Delhaie e236d59c71 Add version
2023-10-08 17:27:59 +02:00
2023-06-21 22:57:47 +02:00
2023-06-21 22:57:47 +02:00
2023-10-08 17:27:59 +02:00
2023-06-21 22:57:47 +02:00
2023-10-08 17:27:59 +02:00
2023-10-08 17:27:59 +02:00

HEIC2JPG

Usage

To convert a single file:

heic2jpg myfile.heic

To convert all files in a folder:

heic2jpg -dir ./MyPhotos -r

You can create new files in another folder with the -o argument

Other arguments are available on -h

Build

The tool contains C code, so you need to activate cgo to compile it.

go build

I compile with the following command (not sure if it speeds up conversion, but it makes the binary lighter):

On Linux:

GOAMD64='v3' go build -a -v -ldflags="-s -w" -buildvcs=false

On Windows (PowerShell):

$env:GOAMD64 = 'v3'; go build -a -v -ldflags="-s -w" -buildvcs=false
Description
No description provided
Readme 30 KiB
v0.1.0 Latest
2023-10-08 17:29:00 +02:00
Languages
Go 100%