Skip to content

Hallcoder/image-preview-npm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

9 Commits

Repository files navigation

image-preview-npm

An image preview package published live on npm

install

npm i image-preview-npm 
importImagefrom'legendary-image-preview';//use the image's getBase64Image function in your handler to get the base64 image and set it as the source of the img tag like so:\functionImagePreview(){const[imageSource,setImageSource]=useState('');//initialize your image object consthandleChange=(e)=>{letimage=newImage(e.target.files);//call the getBase64Image() of this object to get the image sourceimage.getBase64Image().then(res=>setImageSource(res));}return(<div><inputonChange={handleChange}type='file'/><imgsrc={imageSource}alt='preview'/></div>)}exportdefaultImagePreview;

About

An image preview package published live on npm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published