
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
image-resize-tools
Advanced tools
# install deps
npm i image-resize-tools --save
# compress files
npm install
npm run compress
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")
<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 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
FAQs
简单的易用的js压缩图片方法
The npm package image-resize-tools receives a total of 2 weekly downloads. As such, image-resize-tools popularity was classified as not popular.
We found that image-resize-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.