forked from deanishe/alfred-safari-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagefile_images.go
146 lines (114 loc) · 2.89 KB
/
magefile_images.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// Copyright (c) 2019 Dean Jackson <[email protected]>
// MIT Licence applies http://opensource.org/licenses/MIT
// +build mage
package main
import (
"fmt"
"image"
"image/color"
"image/draw"
"image/png"
"os"
"path/filepath"
"regexp"
"strconv"
"github.com/disintegration/imaging"
"github.com/magefile/mage/sh"
"github.com/pkg/errors"
)
func rotateIcon(path string, angles []int) error {
var (
dir = filepath.Dir(path)
ext = filepath.Ext(path)
base = filepath.Base(path)
name = base[0 : len(base)-len(ext)]
src image.Image
f *os.File
err error
)
if f, err = os.Open(path); err != nil {
return err
}
defer f.Close()
if src, _, err = image.Decode(f); err != nil {
return err
}
for i, n := range angles {
p := filepath.Join(dir, fmt.Sprintf("%s-%d%s", name, n, ext))
if exists(p) {
fmt.Printf("[%d/%d] skipped existing: %s\n", i+1, len(angles), p)
continue
}
dst := imaging.Rotate(src, 360-float64(n), image.Transparent)
dst = imaging.CropCenter(dst, src.Bounds().Dx(), src.Bounds().Dy())
if f, err = os.Create(p); err != nil {
return err
}
defer f.Close()
if err = png.Encode(f, dst); err != nil {
return err
}
fmt.Printf("wrote %s\n", p)
}
return nil
}
// Copy image src to dest. If colour is non-empty, src is re-coloured.
// Colour should be an HTML hex, e.g. "ff33ba".
func copyImage(src, dest, colour string) error {
if colour == "" {
return sh.Copy(src, dest)
}
var (
c *color.RGBA
f *os.File
err error
mask image.Image
)
if c, err = parseHex(colour); err != nil {
return err
}
if f, err = os.Open(src); err != nil {
return errors.Wrap(err, "read image")
}
defer f.Close()
if mask, _, err = image.Decode(f); err != nil {
return errors.Wrap(err, "decode image")
}
img := image.NewRGBA(mask.Bounds())
draw.DrawMask(img, img.Bounds(), &image.Uniform{c}, image.ZP, mask, image.ZP, draw.Src)
if f, err = os.Create(dest); err != nil {
return errors.Wrap(err, "open new image")
}
defer f.Close()
if err = png.Encode(f, img); err != nil {
return errors.Wrap(err, "write PNG data")
}
fmt.Printf("copied %s to %s using colour #%s\n", src, dest, colour)
return nil
}
var rxHexColour = regexp.MustCompile(`[a-fA-F0-9]{6}`)
func parseHex(s string) (*color.RGBA, error) {
if !rxHexColour.MatchString(s) {
return nil, fmt.Errorf("invalid hex colour: %s", s)
}
var (
r, g, b uint64
err error
)
if r, err = strconv.ParseUint(s[0:2], 16, 8); err != nil {
return nil, fmt.Errorf("invalid value for red (%s): %v", s[0:2], err)
}
if g, err = strconv.ParseUint(s[2:4], 16, 8); err != nil {
return nil, fmt.Errorf("invalid value for green (%s): %v", s[2:4], err)
}
if b, err = strconv.ParseUint(s[4:6], 16, 8); err != nil {
return nil, fmt.Errorf("invalid value for blue (%s): %v", s[4:6], err)
}
c := &color.RGBA{
R: uint8(r),
G: uint8(g),
B: uint8(b),
A: 0xff,
}
return c, nil
}