Posts

Showing posts with the label canvas

equivalent of “canvas” in React Native

I am currently working on an image processing mobile App based on React-Native. However, I can't find any related documents about the image crop, zoom, pan, and save functions (which can be easily achieved by the HTML5 canvas element) on the React-Native official site. I also do some google searches, but only find an "unmaintained" react-native-canvas (https://github.com/lwansbrough/react-native-canvas). Is there any equivalent of the "canvas" in React Native? Well, after two years, there is a new choice for you: https://alibaba.github.io/GCanvas/ This "GCanvas" is designed for native environment to run canvas2d & WebGL APIs. See https://alibaba.github.io/GCanvas/docs/Integrate%20GCanvas%20on%20ReactNative.html There are a few options that are "similar" but not the exact same. My suggestions would be... React Native SVG - Feels a lot like the SVG web components we are all familiar with. You can do lots wit...