react-native-mask-segment-c.../dist/utils/skiaImage.js
a1518 acd6d3a73d feat: add MaskSegmentApp source code and config
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-26 00:27:28 -07:00

12 lines
510 B
JavaScript

import { Skia, AlphaType, ColorType, } from '@shopify/react-native-skia';
/** 连续 RGBA 缓冲 → Skia 图像(高低频 / 工作分辨率原图内存直传,避免 PNG 落盘) */
export function rgbaBufferToSkiaImage(buffer, cols, rows) {
const data = Skia.Data.fromBytes(buffer);
return Skia.Image.MakeImage({
width: cols,
height: rows,
alphaType: AlphaType.Opaque,
colorType: ColorType.RGBA_8888,
}, data, cols * 4);
}
//# sourceMappingURL=skiaImage.js.map