-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathicns.go
220 lines (196 loc) · 4.54 KB
/
icns.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package icns
import (
"errors"
"fmt"
"image"
"io"
"sync"
"github.com/nfnt/resize"
)
// Encoder encodes ICNS files from a source image.
type Encoder struct {
Wr io.Writer
Algorithm InterpolationFunction
}
// NewEncoder initialises an encoder.
func NewEncoder(wr io.Writer) *Encoder {
return &Encoder{
Wr: wr,
Algorithm: MitchellNetravali,
}
}
// WithAlgorithm applies the interpolation function used to resize the image.
func (enc *Encoder) WithAlgorithm(a InterpolationFunction) *Encoder {
enc.Algorithm = a
return enc
}
// Encode icns with the given configuration.
func (enc *Encoder) Encode(img image.Image) error {
if enc.Wr == nil {
return errors.New("cannot write to nil writer")
}
if img == nil {
return errors.New("cannot encode nil image")
}
iconset, err := NewIconSet(img, enc.Algorithm)
if err != nil {
return err
}
if _, err := iconset.WriteTo(enc.Wr); err != nil {
return err
}
return nil
}
// Encode writes img to wr in ICNS format.
// img is assumed to be a rectangle; non-square dimensions will be squared
// without preserving the aspect ratio.
// Uses nearest neighbor as interpolation algorithm.
func Encode(wr io.Writer, img image.Image) error {
return NewEncoder(wr).Encode(img)
}
// NewIconSet uses the source image to create an IconSet.
// If width != height, the image will be resized using the largest side without
// preserving the aspect ratio.
func NewIconSet(img image.Image, interp InterpolationFunction) (*IconSet, error) {
biggest := findNearestSize(img)
if biggest == 0 {
return nil, ErrImageTooSmall{image: img, need: 16}
}
icons := make([]*Icon, len(osTypes))
work := sync.WaitGroup{}
var iconIdx int
for _, size := range sizesFrom(biggest) {
osTypes, ok := getTypesFromSize(size)
if !ok {
continue
}
size := size
for _, osType := range osTypes {
work.Add(1)
go func(iconIdx int, osType OsType, size uint) {
iconImg := resize.Resize(size, size, img, interp)
icons[iconIdx] = &Icon{
Type: osType,
Image: iconImg,
}
work.Done()
}(iconIdx, osType, size)
iconIdx += 1
}
}
work.Wait()
iconSet := &IconSet{
Icons: icons,
}
return iconSet, nil
}
// Big-endian.
// https://golang.org/src/image/png/writer.go
func writeUint32(b []uint8, u uint32) {
b[0] = uint8(u >> 24)
b[1] = uint8(u >> 16)
b[2] = uint8(u >> 8)
b[3] = uint8(u >> 0)
}
var sizes = []uint{
1024,
512,
256,
128,
64,
32,
16,
}
// findNearestSize finds the biggest icon size we can use for this image.
func findNearestSize(img image.Image) uint {
size := biggestSide(img)
for _, s := range sizes {
if size >= s {
return s
}
}
return 0
}
func biggestSide(img image.Image) uint {
var size uint
b := img.Bounds()
w, h := uint(b.Max.X), uint(b.Max.Y)
size = w
if h > size {
size = h
}
return size
}
// sizesFrom returns a slice containing the sizes less than and including max.
func sizesFrom(max uint) []uint {
for ii, s := range sizes {
if s <= max {
return sizes[ii:]
}
}
return []uint{}
}
// IconDescription describes an icon.
type IconDescription struct {
OsType
ImageFormat
}
func (desc IconDescription) String() string {
return fmt.Sprintf("%s (%s)", desc.OsType, desc.ImageFormat)
}
// ImageFormat specifies the type of image data associated with an icon.
type ImageFormat int
const (
ImageFormatPNG ImageFormat = iota
ImageFormatJPEG2000
)
func (f ImageFormat) String() string {
switch f {
case ImageFormatPNG:
return "PNG"
case ImageFormatJPEG2000:
return "JPEG 2000"
}
return fmt.Sprintf("unknown format %d", f)
}
// OsType is a 4 character identifier used to differentiate icon types.
type OsType struct {
ID string
Size uint
}
func (t OsType) String() string {
return fmt.Sprintf("%s %d", t.ID, t.Size)
}
var osTypes = []OsType{
{ID: "ic10", Size: uint(1024)},
{ID: "ic14", Size: uint(512)},
{ID: "ic09", Size: uint(512)},
{ID: "ic13", Size: uint(256)},
{ID: "ic08", Size: uint(256)},
{ID: "ic07", Size: uint(128)},
{ID: "ic12", Size: uint(64)},
{ID: "ic11", Size: uint(32)},
}
// getTypesFromSize returns the types for the given icon size (in px).
// The boolean indicates whether the types exist.
func getTypesFromSize(size uint) ([]OsType, bool) {
var retOsTypes []OsType
for _, t := range osTypes {
if t.Size == size {
retOsTypes = append(retOsTypes, t)
}
}
return retOsTypes, len(retOsTypes) != 0
}
func getTypeFromID(ID string) (OsType, bool) {
for _, t := range osTypes {
if t.ID == ID {
return t, true
}
}
return OsType{}, false
}
func osTypeFromID(ID string) OsType {
t, _ := getTypeFromID(ID)
return t
}