gpt4 book ai didi

node.js - 使用锐利批量转换整个文件夹的图像

转载 作者:行者123 更新时间:2023-12-05 03:42:06 30 4
gpt4 key购买 nike

我有一个项目,需要将大量 .png 文件批量转换为 .jpg,并对压缩质量进行一些控制。使用 Node 模块 sharp 对单个文件很有用,例如:

const sharp = require("sharp");

sharp("input/82.png")
.toFormat("jpeg")
.jpeg({ quality: 70 })
.toFile("output/82.jpg");

但我有数百个文件需要一次转换。我曾希望能够对文件使用一些通配符,例如:

sharp("input/*.png")
.toFormat("jpeg")
.jpeg({ quality: 70 })
.toFile("output/*.jpg");

虽然这当然行不通,但我也没有尝试遍历所有文件,也没有尝试使用 Node 模块 glob。感谢此处提供的任何指导。

最佳答案

在另一位开发人员的帮助下,答案比我预期的要复杂一些,并且需要使用 Node 模块glob:

// example run : node sharp-convert.js ~/Projects/docs/public/images/output/new

const fs = require('fs');
const process = require('process');
const path = require('path');
const glob = require("glob")


const dir = process.argv[2];

const input_path = path.join(dir, '**', '*.png');
const output_path = path.join(dir, "min");

const sharp = require('sharp');

glob(input_path, function (err, files) {
if (err != null) { throw err; }
fs.mkdirSync(output_path, { recursive: true });
files.forEach(function(inputFile) {
sharp(inputFile)
.jpeg({ mozjpeg: true, quality: 60, force: true })
.toFile(path.join(output_path, path.basename(inputFile, path.extname(inputFile))+'.jpg'), (err, info) => {
if(err === null){
fs.unlink(inputFile, (err2) => {
if (err2) throw err2;
console.log('successfully compressed and deleted '+inputFile);
});
} else { throw err }
});
});
});

注意:此方法具有破坏性,会删除任何现有的 .png。请务必备份您的原件。

关于node.js - 使用锐利批量转换整个文件夹的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67402947/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com