fix emoji sheet partial letterboxing

This commit is contained in:
Cadence Ember 2023-09-27 23:23:46 +13:00
parent 4151979e10
commit 95b6fddaa8

View file

@ -37,7 +37,7 @@ async function compositeMatrixEmojis(mxcs) {
/** @type {{info: sharp.OutputInfo, buffer: Buffer}} */
const result = await new Promise((resolve, reject) => {
const transformer = sharp()
.resize(SIZE, SIZE, {fit: "contain"})
.resize(SIZE, SIZE, {fit: "contain", background: {r: 0, g: 0, b: 0, alpha: 0}})
.png({compressionLevel: 0})
.toBuffer((err, buffer, info) => {
if (err) return reject(err)