1.1.2 • Published 10 years ago

react-image-load v1.1.2

Weekly downloads
8
License
MIT
Repository
github
Last release
10 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

10 years ago

1.1.0

10 years ago

1.0.17

10 years ago

1.0.16

10 years ago

1.0.15

10 years ago

1.0.14

10 years ago

1.0.13

10 years ago

1.0.12

10 years ago

1.0.11

10 years ago

1.0.10

10 years ago

1.0.9

10 years ago

1.0.6

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago