react-mosaic
v0.0.20
Published
React component that generates mosaic from the given image source.
Downloads
1,018
Maintainers
Readme
react-mosaic
Generate mosaic images in react.
https://chitchu.github.io/react-mosaic/
Getting started
$ npm install react-mosaic
import React from 'react';
import Mosaic from 'react-mosaic';
const imageSource = 'data:image/png;base64, ...'; //requires base64 encoded image
// If you don't pass a `tileRenderer` function the
// component will render each tile with a boring box.
const tileRenderer = props => (
<circle cx={props.x} cy={props.y} r={6} fill={props.fill} key={props.key} />
);
const App = () => (
<Mosaic src={imageSource} tileSize="12" width="800" height="450" tileRenderer={tileRenderer} />
);
export default App;