Description
Re-created from #1995
The fixes(#2001) mentioned in the above thread don't apply to a major package: expo-image
Please address these
React Native Skia Version
latest
React Native Version
0.81.0
Using New Architecture
Steps to Reproduce
import { Image } from 'expo-image' // Expo image bug
const makeImage = (ref) => {
const base64 = (await makeImageFromView(snapRef)).encodeToBase64(4, 100);
return base64;
}
const Component = () => {
const snapRef= useRef();
return(
<View
ref={snapref}
style={{
width: 300,
height: 300,
alignItems: 'center',
justifyContent: 'center',
}}>
<Image
style={{ width: 36, height: 36, borderRadius: 4 }}
source={{ uri: 'http://via.placeholder.com/640x36' }}
/>
</View>
)
}
Example, Screenshots
Rendered by React Native (Expo)

Rendered by SKIA

Description
Re-created from #1995
The fixes(#2001) mentioned in the above thread don't apply to a major package:
expo-imagePlease address these
React Native Skia Version
latest
React Native Version
0.81.0
Using New Architecture
Steps to Reproduce
Example, Screenshots
Rendered by React Native (Expo)

Rendered by SKIA
