Fix avgColor format
This commit is contained in:
parent
f0a29721c9
commit
cad49892d3
|
@ -356,7 +356,7 @@ export default async function(
|
|||
|
||||
logger.debug(`average color is calculated: ${r}, ${g}, ${b}`);
|
||||
|
||||
const value = info.isOpaque ? [r, g, b] : [r, g, b, 255];
|
||||
const value = info.isOpaque ? `rgb(${r},${g},${b})` : `rgba(${r},${g},${b},255)`;
|
||||
|
||||
properties['avgColor'] = value;
|
||||
} catch (e) { }
|
||||
|
|
Loading…
Reference in New Issue