An open API service indexing awesome lists of open source software.

https://github.com/third774/react-image-focus


https://github.com/third774/react-image-focus

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# react-focal-image
A component for displaying images and intelligently cropping based on a specific focal point.

## Usage

### Displaying Images

```jsx
import React from "react"
import { FocalImage } from "image-focal-picker"

class App extends React.Component {
render() {
const { x, y, imgUrl } = this.state
return (






)
}
}
```