1.1.2 • Published 8 years ago

react-image-load v1.1.2

Weekly downloads
8
License
MIT
Repository
github
Last release
8 years ago

Documentation

Load image blob file and Rotate it.

installation

npm install react-image-load

Example

import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import Img from 'react-image-load';

// don't forget load styles, otherwise rotation will not work; 
import 'react-image-load/assets/style.css'


export default class App extends Component {
  render() {

    return (
        <Img
          width="100"
          height="200"
          rotate={90}
          src="http://i.telegraph.co.uk/multimedia/archive/03570/potd-grass_3570487k.jpg"
        />
    );
  }
}

ReactDOM.render(<App />, document.getElementById('root'));```

## Props

| Property | type | description | default |
-------------------------------------------
| width | { Number; String } | Image width in px | origin size |
------
| height | { Number; String } | Image height in px | origin size |
------
| rotate | { Number } | Image rotation; May be one of: 0, 90, 180, 270 | 0 |
-----
| src | { String } | Image url | none |
------
| className | { String } | Image className | 'blob-image' |
------
| headers | { Object } | Headers image request method | none |
------
| transform | Boolean | Adjust width/heihgt if image is rotated on 90, 270 deg | true |
------


   
1.1.2

8 years ago

1.1.0

8 years ago

1.0.17

8 years ago

1.0.16

8 years ago

1.0.15

8 years ago

1.0.14

8 years ago

1.0.13

8 years ago

1.0.12

8 years ago

1.0.11

8 years ago

1.0.10

8 years ago

1.0.9

8 years ago

1.0.6

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago