UNPKG

pixel-utils

Version:
6 lines 276 B
import isHidden from "../is-hidden"; import makeNoDataRGB from "../make-no-data-rgb"; import sliceAlpha from "../slice-alpha"; export default function safely_convert_rgba_to_rgb(noDataValue, pixel) { return isHidden(pixel) ? makeNoDataRGB(noDataValue) : sliceAlpha(pixel); }