🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

image-resize-tools

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

image-resize-tools

简单的易用的js压缩图片方法

1.0.4
latest
npm
Version published
Weekly downloads
2
-50%
Maintainers
1
Weekly downloads
 
Created
Source

image-resize-tools

Development Setup

# install deps
npm i image-resize-tools --save

# compress files
npm install
npm run compress

Seven methods in tools

Alt text

Include the library

in the browser:

<script src="http://www.wangyulue.com/assets/js/image_resize_tools/resize.common.js"></script>

in the node:

const imageResizeTools = require("image-resize-tools")

Use examples

<input id="demo" type="file" onchange="view()">
function view(){
    var file = document.getElementById('demo').files[0];
    console.log(file);
    imageResizeTools.fileResizetoFile(file,0.6,function(res){
        //回调中的res是一个压缩后的Blob类型(可以当做File类型看待)文件;
        //The res in the callback is a compressed Blob type (which can be treated as a File type) file;
        console.log(res);
        //do something
    })
}

Use Promise

Use too many callback functions does not look elegant,as follows:

var canvas = imageResizeTools.imagetoCanvas(img);
imageResizeTools.canvasResizetoFile(canvas,quality,file=>{
    imageResizeTools.filetoDataURL(file,data=>{
        imageResizeTools.dataURLtoImage(data,img=>{
            //do something
        })
    })
})

So, we recommend use resize.promise.js ,as follows:

in the browser, we change the script:

<script src="http://www.wangyulue.com/assets/js/image_resize_tools/resize.promise.js"></script>

in the node, we default use promise.

use like this:

imageResizeTools.imagetoCanvas(img)
    .then(canvas => imageResizeTools.canvasResizetoFile(canvas,quality))
    .then(file => imageResizeTools.filetoDataURL(file))
    .then(data => imageResizeTools.dataURLtoImage(data))
    .then(img => {
        //do something
    })
})

or like this:

const canvas = await imageResizeTools.imagetoCanvas(img);
const dataURL = await imageResizeTools.canvasResizetoDataURL(canvas,quality);
const file = await imageResizeTools.dataURLtoFile(dataURL);
const data = await imageResizeTools.filetoDataURL(file);
const image = await imageResizeTools.dataURLtoImage(data);
//do something

Description document

王玉略的个人网站

License

MIT

Keywords

image

FAQs

Package last updated on 11 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts