database-petani-mobile/node_modules/fast-png/lib/convertIndexedToRgb.d.ts
2026-02-23 16:39:35 +07: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>;