Files
RGC/SuiviREForamteur/node_modules/fast-png/lib/convertIndexedToRgb.d.ts
2026-02-11 13:57:54 +01:00

8 lines
283 B
TypeScript

import type { DecodedPng } from './types';
/**
* 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>;