fast-png
Version:
PNG image decoder and encoder written entirely in JavaScript
8 lines • 338 B
TypeScript
import type { DecodedPng } from './types.ts';
/**
* Converts indexed data into RGB/RGBA format
* @param decodedImage - Image to decode data from.
* @returns Uint8Array with RGB data.
*/
export declare function convertIndexedToRgb(decodedImage: DecodedPng): Uint8Array<ArrayBuffer>;
//# sourceMappingURL=convert_indexed_to_rgb.d.ts.map