1.0.2 • Published 3 years ago

adonis5-image-thumbnail v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Table of contents

adonis5-image-thumbnail

AdonisJS 5, image-thumbnail

npm-image license-image typescript-image

A short brief

Installation

npm i --save adonis5-image-thumbnail

Usage

After adding provider to your app, you can import ImageThumbnail to access its functions

    const image = request.file('image')
    const thumbnail = await imageThumbnail(image.tmpPath,{width:150, height:150, withMetaData: true, fit: 'inside'})