@logitech-mx-creative-console/core
Version:
An npm module for interfacing with the Logitech MX Creative Console
12 lines • 521 B
JavaScript
import { transformImageBuffer } from '../../util.js';
export class JpegButtonLcdImagePacker {
#encodeJPEG;
constructor(encodeJPEG) {
this.#encodeJPEG = encodeJPEG;
}
async convertPixelBuffer(sourceBuffer, sourceOptions, targetSize) {
const byteBuffer = transformImageBuffer(sourceBuffer, sourceOptions, { colorMode: 'rgba' }, 0, targetSize.width, targetSize.height);
return this.#encodeJPEG(byteBuffer, targetSize.width, targetSize.height);
}
}
//# sourceMappingURL=jpeg.js.map