# react-imgpro **Repository Path**: sujunmin/react-imgpro ## Basic Information - **Project Name**: react-imgpro - **Description**: 📷 Image Processing Component for React - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-05 - **Last Updated**: 2024-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # react-imgpro [![Build Status](https://travis-ci.org/nitin42/react-imgpro.svg?branch=master)](https://travis-ci.org/nitin42/react-imgpro) ![status](https://img.shields.io/badge/version-1.3.14-brightgreen.svg) ![status](https://img.shields.io/badge/size-13.1KB-brightgreen.svg) ![status](https://img.shields.io/badge/status-stable-brightgreen.svg) ![yarn](https://img.shields.io/badge/yarn-1.9.4-blue.svg) > Image Processing Component for React

## Introduction `react-imgpro` is a image processing component for React. This component process an image with filters supplied as props and returns a [base64](https://en.wikipedia.org/wiki/Base64) image. **Example** ```jsx const mix = { color: 'mistyrose', amount: 10 } class App extends React.Component { state = { src: '', err: null } render() { return ( this.setState({ src, err, })} /> ) } } ```

## Motivation

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 😄 ## Demo

## Install ``` 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](https://www.jsdelivr.com). ``` ``` ## Usage ```jsx import React from 'react'; import ProcessImage from 'react-imgpro'; class App extends React.Component { state = { src: '', err: null } render() { return ( this.setState({ src, err})} /> ) } } ``` ## Documentation See the detailed documentation [here](./Docs). ## SSR support ? Yes, `react-imgpro` supports SSR. ## Contributing [Contributing guide](https://github.com/nitin42/react-imgpro/blob/master/Docs/CONTRIBUTING.MD). ## Extra resources If you want to use blenders, plugins and perform event based calculations, try [CamanJS](http://camanjs.com/). ## License MIT Sponsor