/** * pixel-convert.ts * * Word-wise conversion of OpenSlide's pre-multiplied ARGB32 output to * straight RGBA. Assumes a little-endian host (WASM is always LE, and all * browsers that can run it are too): a source word reads 0xAARRGGBB and the * destination word must read 0xAABBGGRR so its bytes land as [R, G, B, A]. */ /** * Convert pre-multiplied ARGB to straight RGBA, one 32-bit word per pixel. * `src` and `dst` must have the same length; they may alias (in-place). */ export declare function convertArgbToRgba(src: Uint32Array, dst: Uint32Array): void; //# sourceMappingURL=pixel-convert.d.ts.map