Image processing component for React
npm install react-imgpro
!status
!status
!status
!yarn
> Image Processing Component for React

react-imgpro is a image processing component for React. This component process an image with filters supplied as props and returns a base64 image.
Example
``jsx
const mix = {
color: 'mistyrose',
amount: 10
}
class App extends React.Component {
state = { src: '', err: null }
render() {
return (
colors={{
mix
}}
resize={{ width: 500, height: 500, mode: 'bilinear' }}
processedImage={(src, err) => this.setState({ src, err, })}
/>
)
}
}
`


I was working on a project last month which involved a lot of image processing and I'd to rely on third party libraries. But before using them directly, I'd to learn different concepts in gl (shaders) and then try to implement them in React. The difficult part was not learning but it was the verbosity, boilerplate code and redundancy introduced by the libraries in the codebase. It was getting difficult to organise all the things 😞
So I wanted a layer of abstraction which would make it easy to manipulate the colors of the image, applying filters and gl shaders efficiently with ease. And React's component based model was perfect for hiding all the implementation details in a component 😄

``
npm install react-imgpro
This also depends on react so make sure you've installed it.
OR
The UMD build is also available via jsDelivr.
``
`jsx
import React from 'react';
import ProcessImage from 'react-imgpro';
class App extends React.Component {
state = {
src: '',
err: null
}
render() {
return (
resize={{ width: 500, height: 500 }}
colors={{
mix: {
color: 'mistyrose',
amount: 20
}
}}
processedImage={(src, err) => this.setState({ src, err})}
/>
)
}
}
`
See the detailed documentation here.
Yes, react-imgpro` supports SSR.
If you want to use blenders, plugins and perform event based calculations, try CamanJS.
MIT