Spaces:
Running
Running
File size: 790 Bytes
4ee4376 |
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 |
//
// resize a bitmap data array using nearest neighbor algorithm
//
function resize(data, sourceSize, destSize) {
let resizedData = [];
for (let i = 0; i < destSize; i++) {
for (let j = 0; j < destSize; j++) {
let x = Math.floor(j * sourceSize / destSize);
let y = Math.floor(i * sourceSize / destSize);
resizedData[(i * destSize + j)] = data[(y * sourceSize + x)];
}
}
return resizedData;
}
//
// converts byte array to an ascii string
//
function bytesToAscii(bytes) {
return Array.prototype.map.call(bytes, x => String.fromCharCode(x)).join('');
}
//
// converts numeric values to a base2 string of specified length
//
function bin2str(bin, length) {
return bin.toString(2).padStart(length, '0');
}
export { resize, bytesToAscii, bin2str }; |