1.0.0 • Published 5 years ago

load-image-react-no-redirect v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

load-image-react

Use blueimp-load-image in React

Installation

npm install load-image-react

Usage

import { Image } from "load-image-react";

const SomeComponent = () => {
    return (
        <>
            <h2>My Image</h2>
            <Image
                src="some-image-url.png"
                loadOptions={{
                    downsamplingRatio: 0.5,
                    maxWidth: 200,
                    maxHeight: 200
                }}
            />
        </>
    );
};

Load options

The loadOptions prop is passed into blueimp-load-image. canvas and orientation will always be set to true.

License

Made with :sparkling_heart: by NewOrbit in Oxfordshire, and licensed under the MIT License