-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
74 lines (59 loc) · 1.35 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main
import (
"flag"
"image"
_ "image/jpeg"
"image/png"
"log"
"os"
"github.com/paulvasilenko/go-transcolor"
)
var (
sourceFile = flag.String("source", "", "Source file which colors would be used as a source palette")
targetFile = flag.String("target", "", "Target file to which we apply source color palette")
outputPath = flag.String("out", "", "File where to save the result")
)
func main() {
flag.Parse()
if *sourceFile == "" {
log.Fatalf("missing source file")
}
if *targetFile == "" {
log.Fatalf("missing target file")
}
if *outputPath == "" {
log.Fatalf("missing output path")
}
src, err := openImage(*sourceFile)
if err != nil {
log.Fatalf("failed to open source: %v", err)
}
target, err := openImage(*targetFile)
if err != nil {
log.Fatalf("failed to open target: %v", err)
}
res := transcolor.Transfer(src, target)
if err := saveImage(res, *outputPath); err != nil {
log.Fatalf("failed to save image: %v", err)
}
}
func saveImage(img image.Image, path string) error {
file, err := os.Create(path)
if err != nil {
return err
}
defer file.Close()
return png.Encode(file, img)
}
func openImage(path string) (image.Image, error) {
src, err := os.Open(path)
if err != nil {
return nil, err
}
defer src.Close()
srcImg, _, err := image.Decode(src)
if err != nil {
return nil, err
}
return srcImg, nil
}