forked from discord/lilliput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ops.go
232 lines (191 loc) · 5.33 KB
/
ops.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
221
222
223
224
225
226
227
228
229
230
231
232
package lilliput
import (
"io"
"time"
)
type ImageOpsSizeMethod int
const (
ImageOpsNoResize ImageOpsSizeMethod = iota
ImageOpsFit
ImageOpsResize
)
// ImageOptions controls how ImageOps resizes and encodes the
// pixel data decoded from a Decoder
type ImageOptions struct {
// FileType should be a string starting with '.', e.g.
// ".jpeg"
FileType string
// Width controls the width of the output image
Width int
// Height controls the height of the output image
Height int
// ResizeMethod controls how the image will be transformed to
// its output size. Notably, ImageOpsFit will do a cropping
// resize, while ImageOpsResize will stretch the image.
ResizeMethod ImageOpsSizeMethod
// NormalizeOrientation will flip and rotate the image as necessary
// in order to undo EXIF-based orientation
NormalizeOrientation bool
// EncodeOptions controls the encode quality options
EncodeOptions map[int]int
// MaxEncodeFrames controls the maximum number of frames that will be resized
MaxEncodeFrames int
// MaxEncodeDuration controls the maximum duration of animated image that will be resized
MaxEncodeDuration time.Duration
}
// ImageOps is a reusable object that can resize and encode images.
type ImageOps struct {
frames []*Framebuffer
frameIndex int
}
// NewImageOps creates a new ImageOps object that will operate
// on images up to maxSize on each axis.
func NewImageOps(maxSize int) *ImageOps {
frames := make([]*Framebuffer, 2)
frames[0] = NewFramebuffer(maxSize, maxSize)
frames[1] = NewFramebuffer(maxSize, maxSize)
return &ImageOps{
frames: frames,
frameIndex: 0,
}
}
func (o *ImageOps) active() *Framebuffer {
return o.frames[o.frameIndex]
}
func (o *ImageOps) secondary() *Framebuffer {
return o.frames[1-o.frameIndex]
}
func (o *ImageOps) swap() {
o.frameIndex = 1 - o.frameIndex
}
// Clear resets all pixel data in ImageOps. This need not be called
// between calls to Transform. You may choose to call this to remove
// image data from memory.
func (o *ImageOps) Clear() {
o.frames[0].Clear()
o.frames[1].Clear()
}
// Close releases resources associated with ImageOps
func (o *ImageOps) Close() {
o.frames[0].Close()
o.frames[1].Close()
}
func (o *ImageOps) decode(d Decoder) error {
active := o.active()
return d.DecodeTo(active)
}
func (o *ImageOps) fit(d Decoder, width, height int) (bool, error) {
active := o.active()
secondary := o.secondary()
err := active.Fit(width, height, secondary)
if err != nil {
return false, err
}
o.swap()
return true, nil
}
func (o *ImageOps) resize(d Decoder, width, height int) (bool, error) {
active := o.active()
secondary := o.secondary()
err := active.ResizeTo(width, height, secondary)
if err != nil {
return false, err
}
o.swap()
return true, nil
}
func (o *ImageOps) normalizeOrientation(orientation ImageOrientation) {
active := o.active()
active.OrientationTransform(orientation)
}
func (o *ImageOps) encode(e Encoder, opt map[int]int) ([]byte, error) {
active := o.active()
return e.Encode(active, opt)
}
func (o *ImageOps) encodeEmpty(e Encoder, opt map[int]int) ([]byte, error) {
return e.Encode(nil, opt)
}
func (o *ImageOps) skipToEnd(d Decoder) error {
var err error
for {
err = d.SkipFrame()
if err != nil {
return err
}
}
}
// Transform performs the requested transform operations on the Decoder specified by d.
// The result is written into the output buffer dst. A new slice pointing to dst is returned
// with its length set to the length of the resulting image. Errors may occur if the decoded
// image is too large for ImageOps or if Encoding fails.
//
// It is important that .Decode() not have been called already on d.
func (o *ImageOps) Transform(d Decoder, opt *ImageOptions, dst []byte) ([]byte, error) {
h, err := d.Header()
if err != nil {
return nil, err
}
enc, err := NewEncoder(opt.FileType, d, dst)
if err != nil {
return nil, err
}
defer enc.Close()
frameCount := 0
duration := time.Duration(0)
for {
err = o.decode(d)
emptyFrame := false
if err != nil {
if err != io.EOF {
return nil, err
}
// io.EOF means we are out of frames, so we should signal to encoder to wrap up
emptyFrame = true
}
duration += o.active().Duration()
if opt.MaxEncodeDuration != 0 && duration > opt.MaxEncodeDuration {
err = o.skipToEnd(d)
if err != io.EOF {
return nil, err
}
return o.encodeEmpty(enc, opt.EncodeOptions)
}
o.normalizeOrientation(h.Orientation())
var swapped bool
if opt.ResizeMethod == ImageOpsFit {
swapped, err = o.fit(d, opt.Width, opt.Height)
} else if opt.ResizeMethod == ImageOpsResize {
swapped, err = o.resize(d, opt.Width, opt.Height)
} else {
swapped, err = false, nil
}
if err != nil {
return nil, err
}
var content []byte
if emptyFrame {
content, err = o.encodeEmpty(enc, opt.EncodeOptions)
} else {
content, err = o.encode(enc, opt.EncodeOptions)
}
if err != nil {
return nil, err
}
if content != nil {
return content, nil
}
frameCount++
if opt.MaxEncodeFrames != 0 && frameCount == opt.MaxEncodeFrames {
err = o.skipToEnd(d)
if err != io.EOF {
return nil, err
}
return o.encodeEmpty(enc, opt.EncodeOptions)
}
// content == nil and err == nil -- this is encoder telling us to do another frame
// for mulitple frames/gifs we need the decoded frame to be active again
if swapped {
o.swap()
}
}
}