UNPKG

imagerot

Version:

A lightweight, cross-environment image library for applying unique effects via raw image buffers.

11 lines (10 loc) 302 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.removeAlphaChannel = void 0; const removeAlphaChannel = (data) => { for (let i = 0; i < data.length; i += 4) { data[i + 3] = 255; } return data; }; exports.removeAlphaChannel = removeAlphaChannel;