Skip to content

Instantly share code, notes, and snippets.

@timoisalive
timoisalive / GLViewWithPixelData.tsx
Created October 5, 2023 17:47
Get image pixel data on Expo/React Native
import Expo2DContext from 'expo-2d-context'
import { Asset } from 'expo-asset'
import { GLView, GLViewProps } from 'expo-gl'
import React from 'react'
export type PixelData = {
asset: Asset
data: Uint8ClampedArray
height: number
width: number