the-resizedeprecated

Resize image files

Usage no npm install needed!

<script type="module">
  import theResize from 'https://cdn.skypack.dev/the-resize';
</script>

README

the-resize

Build Status npm Version JS Standard

Resize image files

Installation

$ npm install the-resize --save

Usage

'use strict'

const { TheResize } = require('the-resize')

async function tryExample () {
  const resize = new TheResize({
    width: 200,

    fit: 'inside',
    height: 200
  })
  // Resize image to size fit inside 200x200
  await resize.convert('src01.png', 'dest01.png')
}

tryExample().catch((err) => console.error(err))

API Guide

License

This software is released under the MIT License.

Links