forked from Automattic/node-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexed-png-alpha.js
34 lines (32 loc) · 1009 Bytes
/
indexed-png-alpha.js
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
var Canvas = require('..')
var fs = require('fs')
var path = require('path')
var canvas = Canvas.createCanvas(200, 200)
var ctx = canvas.getContext('2d', { pixelFormat: 'A8' })
// Matches the "fillStyle" browser test, made by using alpha fillStyle value
var palette = new Uint8ClampedArray(37 * 4)
var i, j
var k = 0
// First value is opaque white:
palette[k++] = 255
palette[k++] = 255
palette[k++] = 255
palette[k++] = 255
for (i = 0; i < 6; i++) {
for (j = 0; j < 6; j++) {
palette[k++] = Math.floor(255 - 42.5 * i)
palette[k++] = Math.floor(255 - 42.5 * j)
palette[k++] = 0
palette[k++] = 255
}
}
for (i = 0; i < 6; i++) {
for (j = 0; j < 6; j++) {
var index = i * 6 + j + 1.5 // 0.5 to bias rounding
var fraction = index / 255
ctx.fillStyle = 'rgba(0,0,0,' + fraction + ')'
ctx.fillRect(j * 25, i * 25, 25, 25)
}
}
canvas.createPNGStream({ palette: palette })
.pipe(fs.createWriteStream(path.join(__dirname, 'indexed2.png')))