Skip to content

React image picker plugin for selecting single or multiple images from galleries.

Notifications You must be signed in to change notification settings

tolsicsse/react-image-picker

 
 

Repository files navigation

NPM npm npm npm

React Image Picker

The image picker is used for selecting single or multiple images from gallery.

Live Demo

Features

  • jQuery Free
  • Single or multiple images selection
  • Styling (...in progress)
  • ...

Installation

npm install react-image-picker

Examples

React Image Picker Demo

//ES6
import React, { Component } from 'react'
import ImagePicker from 'react-image-picker'
import 'react-image-picker/dist/index.css'

//import images from local
import img1 from './images/kitten/200.jpg'
import img2 from './images/kitten/201.jpg'
import img3 from './images/kitten/202.jpg'
import img4 from './images/kitten/203.jpg'

const imageList = [img1, img2, img3, img4]

class App extends Component {
  constructor(props) {
    super(props)
    this.state = {
      image: null
    }
    this.onPick = this.onPick.bind(this)
  }

  onPick(image) {
    this.setState({image})
  }

  render() {
    return (
      <div>
        <ImagePicker 
          images={imageList.map((image, i) => ({src: image, value: i}))}
          onPick={this.onPick}
        />
        <button type="button" onClick={() => console.log(this.state.image)}>OK</button>
      </div>
    )
  }
}

export default App

License

React-Image-Picker is open-sourced software licensed under the MIT license

About

React image picker plugin for selecting single or multiple images from galleries.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 83.8%
  • CSS 13.2%
  • HTML 3.0%