-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrecords_bitmap.go
365 lines (300 loc) · 9 KB
/
records_bitmap.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
package emf
import (
"bytes"
"encoding/binary"
"fmt"
"image"
"image/draw"
"io"
"os"
"github.com/disintegration/imaging"
)
type bitmapRecord struct {
Record
Bounds RectL
xDest, yDest, cxDest, cyDest int32
BitBltRasterOperation uint32
xSrc, ySrc int32
XformSrc XForm
BkColorSrc ColorRef
UsageSrc uint32
offBmiSrc, cbBmiSrc uint32
offBitsSrc, cbBitsSrc uint32
// only for EMR_STRETCHBLT
cxSrc, cySrc int32
BmiSrc BitmapInfoHeader
BitsSrc []byte
}
// unified reader function for EMR_BITBLT and EMR_STRETCHBLT
func (r *bitmapRecord) read(reader *bytes.Reader) (Recorder, error) {
if err := binary.Read(reader, binary.LittleEndian, &r.Bounds); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.xDest); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.yDest); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cxDest); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cyDest); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.BitBltRasterOperation); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.xSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.ySrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.XformSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.BkColorSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.UsageSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.offBmiSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cbBmiSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.offBitsSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cbBitsSrc); err != nil {
return nil, err
}
if r.Type == EMR_STRETCHBLT {
if err := binary.Read(reader, binary.LittleEndian, &r.cxSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cySrc); err != nil {
return nil, err
}
}
// no bitmap data
if r.offBmiSrc == 0 {
return r, nil
}
// defined record size to skip UndefinedSpace
var rsize uint32
if r.Type == EMR_STRETCHBLT {
rsize = 108
} else if r.Type == EMR_BITBLT {
rsize = 100
}
// BitmapBuffer
// skipping UndefinedSpace1
reader.Seek(int64(r.offBmiSrc-rsize), io.SeekCurrent)
if err := binary.Read(reader, binary.LittleEndian, &r.BmiSrc); err != nil {
return nil, err
}
// skipping UndefinedSpace2
reader.Seek(int64(r.offBitsSrc-rsize-r.BmiSrc.HeaderSize), io.SeekCurrent)
r.BitsSrc = make([]byte, r.cbBitsSrc)
if _, err := reader.Read(r.BitsSrc); err != nil {
return nil, err
}
return r, nil
}
func (r *bitmapRecord) readImage() image.Image {
// bytes per pixel
bpp, ok := map[uint16]int{
BI_BITCOUNT_1: 0,
BI_BITCOUNT_3: 1,
BI_BITCOUNT_5: 3,
BI_BITCOUNT_4: 2,
BI_BITCOUNT_6: 4,
}[r.BmiSrc.BitCount]
if !ok {
fmt.Fprintln(os.Stderr, "emf: unsupported bitmap type", r.BmiSrc.BitCount)
return nil
}
// src image width and height
width, height := int(r.BmiSrc.Width), int(r.BmiSrc.Height)
// bytes per line with padding to 4 bytes
bpl := ((width*int(r.BmiSrc.BitCount) + 31) & 0xFFFFFFE0) / 8
switch r.BmiSrc.BitCount {
case BI_BITCOUNT_1:
img := image.NewRGBA(image.Rect(0, 0, width, height))
// we don't read it
colors := map[int][]byte{0: {0, 0, 0, 0}, 1: {255, 255, 255, 0}}
mask := []byte{0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01}
for y := 0; y < height; y++ {
for x := 0; x < width; x++ {
p := img.PixOffset(x, height-y-1)
c := colors[0]
if (r.BitsSrc[y*bpl+x/8] & mask[x%8]) > 0 {
c = colors[1]
}
img.Pix[p+0] = c[2]
img.Pix[p+1] = c[1]
img.Pix[p+2] = c[0]
img.Pix[p+3] = 0xff
}
}
return img
case BI_BITCOUNT_3:
img := image.NewGray(image.Rect(0, 0, width, height))
ix := 0
// BMP images are stored bottom-up
for y := height - 1; y >= 0; y-- {
b := r.BitsSrc[y*bpl : y*bpl+bpl]
p := img.Pix[ix*img.Stride : ix*img.Stride+img.Stride]
for i, j := 0, 0; i < len(p); i, j = i+1, j+bpp {
p[i] = b[j]
}
ix = ix + 1
}
return img
case BI_BITCOUNT_4:
if r.BmiSrc.Compression != BI_RGB {
fmt.Fprintln(os.Stderr, "emf: unsupported compression type", r.BmiSrc.Compression)
return nil
}
img := image.NewRGBA(image.Rect(0, 0, width, height))
ix := 0
// BMP images are stored bottom-up
for y := height - 1; y >= 0; y-- {
b := r.BitsSrc[y*bpl : y*bpl+bpl]
p := img.Pix[ix*img.Stride : ix*img.Stride+img.Stride]
for i, j := 0, 0; i < len(p); i, j = i+4, j+bpp {
// The relative intensities of red, green, and blue
// are represented with 5 bits for each color component.
c := uint16(b[j+1])<<8 | uint16(b[j])
p[i+0] = uint8((c>>10)&0x001f) * 8
p[i+1] = uint8((c>>5)&0x001f) * 8
p[i+2] = uint8(c&0x001f) * 8
p[i+3] = 0xff
}
ix = ix + 1
}
return img
case BI_BITCOUNT_5, BI_BITCOUNT_6:
img := image.NewRGBA(image.Rect(0, 0, width, height))
ix := 0
// BMP images are stored bottom-up
for y := height - 1; y >= 0; y-- {
b := r.BitsSrc[y*bpl : y*bpl+bpl]
p := img.Pix[ix*img.Stride : ix*img.Stride+img.Stride]
for i, j := 0, 0; i < len(p); i, j = i+4, j+bpp {
// color in BMP stored in BGR order
p[i+0] = b[j+2]
p[i+1] = b[j+1]
p[i+2] = b[j+0]
p[i+3] = 0xff
}
ix = ix + 1
}
return img
}
return nil
}
func (r *bitmapRecord) Draw(ctx *context) {
img := r.readImage()
if img == nil {
return
}
// dest image rectangle
tx, ty := ctx.GetMatrixTransform().GetTranslation()
rect := image.Rect(
int(r.Bounds.Left)+int(tx), int(r.Bounds.Top)+int(ty),
int(r.Bounds.Right)+int(tx), int(r.Bounds.Bottom)+int(ty))
// Record bounds often differs for 1px with image size.
// Call scaling only if image size is bigger than record bounds because
// this procedure is very expensive.
if img.Bounds().Dx() > rect.Dx()+1 && img.Bounds().Dy() > rect.Dy()+1 {
img = imaging.Resize(img, rect.Dx(), rect.Dy(), imaging.CatmullRom)
}
draw.Draw(ctx.img, rect, img, image.Point{}, draw.Over)
}
type BitbltRecord struct {
bitmapRecord
}
func readBitbltRecord(reader *bytes.Reader, size uint32) (Recorder, error) {
r := &BitbltRecord{}
r.Record = Record{Type: EMR_BITBLT, Size: size}
return r.read(reader)
}
type StretchbltRecord struct {
bitmapRecord
}
func readStretchbltRecord(reader *bytes.Reader, size uint32) (Recorder, error) {
r := &StretchbltRecord{}
r.Record = Record{Type: EMR_STRETCHBLT, Size: size}
return r.read(reader)
}
type StretchdibitsRecord struct {
// brings two unused fields: XformSrc and BkColorSrc
bitmapRecord
}
func readStretchdibitsRecord(reader *bytes.Reader, size uint32) (Recorder, error) {
r := &StretchdibitsRecord{}
r.Record = Record{Type: EMR_STRETCHDIBITS, Size: size}
if err := binary.Read(reader, binary.LittleEndian, &r.Bounds); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.xDest); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.yDest); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.xSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.ySrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cxSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cySrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.offBmiSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cbBmiSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.offBitsSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cbBitsSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.UsageSrc); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.BitBltRasterOperation); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cxDest); err != nil {
return nil, err
}
if err := binary.Read(reader, binary.LittleEndian, &r.cyDest); err != nil {
return nil, err
}
// BitmapBuffer
// skipping UndefinedSpace1
reader.Seek(int64(r.offBmiSrc-80), io.SeekCurrent)
if err := binary.Read(reader, binary.LittleEndian, &r.BmiSrc); err != nil {
return nil, err
}
// skipping UndefinedSpace2
reader.Seek(int64(r.offBitsSrc-80-r.BmiSrc.HeaderSize), io.SeekCurrent)
r.BitsSrc = make([]byte, r.cbBitsSrc)
if _, err := reader.Read(r.BitsSrc); err != nil {
return nil, err
}
return r, nil
}