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
| import { Jimp, getTestDir } from '@jimp/test-utils';
| import configure from '@jimp/custom';
|
| import png from '../src';
|
| const jimp = configure({ types: [png] }, Jimp);
|
| describe('PNG', () => {
| const imagesDir = getTestDir(__dirname) + '/images';
|
| it('load PNG', async () => {
| const image = await jimp.read(imagesDir + '/dice.png');
|
| image.getPixelColor(10, 10).should.be.equal(0x00000000);
| image.getPixelColor(160, 80).should.be.equal(0x1c1cd4ff);
| image.getPixelColor(400, 250).should.be.equal(0x7e0c0cda);
| });
|
| it('export PNG', async () => {
| const jgd = await jimp.read({
| width: 3,
| height: 3,
| data: [
| 0xff0000ff,
| 0xff0080ff,
| 0xff00ffff,
| 0xff0080ff,
| 0xff00ffff,
| 0x8000ffff,
| 0xff00ffff,
| 0x8000ffff,
| 0x0000ffff
| ]
| });
| const buffer = await jgd.getBufferAsync('image/png');
|
| buffer.toString().should.match(/^.PNG\r\n/);
| });
|
| it('should use png options', async () => {
| const jgd = await jimp.read({
| width: 20,
| height: 20,
| data: [
| 0xff0000ff,
| 0xff0080ff,
| 0xff00ffff,
| 0xff0080ff,
| 0xff00ffff,
| 0x8000ffff,
| 0xff00ffff,
| 0x8000ffff,
| 0x0000ffff,
| 0xff0000ff,
| 0xff0080ff,
| 0xff00ffff,
| 0xff0080ff,
| 0xff00ffff,
| 0x8000ffff,
| 0xff00ffff,
| 0x8000ffff,
| 0x0000ffff,
| 0xff0000ff,
| 0xff0080ff,
| 0xff00ffff,
| 0xff0080ff,
| 0xff00ffff,
| 0x8000ffff,
| 0xff00ffff,
| 0x8000ffff,
| 0x0000ffff,
| 0xff0000ff,
| 0xff0080ff,
| 0xff00ffff,
| 0xff0080ff,
| 0xff00ffff,
| 0x8000ffff,
| 0xff00ffff,
| 0x8000ffff,
| 0x0000ffff
| ]
| });
|
| const image = await jgd
| .deflateStrategy(0)
| .colorType(0)
| .getBufferAsync(Jimp.MIME_PNG);
|
| const expected = await jimp.read(imagesDir + '/options.png');
| const expectedBuffer = await expected
| .deflateStrategy(0)
| .colorType(0)
| .getBufferAsync(Jimp.MIME_PNG);
|
| image.should.be.deepEqual(expectedBuffer);
| });
| });
|
|