如何使用grunt将图像大小调整为其原始大小的倍数?
我在树形结构中有一个包含原始图像的文件夹
我希望它将调整大小的文件导出到多个树结构
答案 0 :(得分:1)
这是bencripps提到的grunt-image-resize Node包的gruntfile.js任务示例。
image_resize: {
resize_50: {
options: {
width: '50%',
quality: 1,
overwrite: true
},
files: [{
expand: true,
cwd: 'GFX/myDirectoryTree',
src: ['{,*/}*.{gif,jpeg,jpg,png}'],
dest: 'OUTPUT/50/myDirectoryTree',
}]
},
resize_20: {
options: {
width: '20%',
quality: 1,
overwrite: true
},
files: [{
expand: true,
cwd: 'GFX/myDirectoryTree',
src: ['{,*/}*.{gif,jpeg,jpg,png}'],
dest: 'OUTPUT/20/myDirectoryTree',
}]
}2
},