This commit is contained in:
syuilo 2018-07-26 17:10:43 +09:00
parent 2697107770
commit 0f7fbacb17
1 changed files with 9 additions and 7 deletions

View File

@ -242,6 +242,7 @@ export default async function(
const calcAvg = async () => {
log('calculate average color...');
try {
const info = await (img as any).stats();
const r = Math.round(info.channels[0].mean);
@ -253,6 +254,7 @@ export default async function(
const value = info.isOpaque ? [r, g, b] : [r, g, b, 255];
properties['avgColor'] = value;
} catch (e) { }
};
propPromises = [calcWh(), calcAvg()];