mirror of
https://github.com/027xiguapi/code-box.git
synced 2026-04-28 15:22:15 +00:00
17 lines
343 B
JavaScript
17 lines
343 B
JavaScript
const sharp = require("sharp")
|
|
|
|
const input = "../assets/icon.png"
|
|
|
|
const output = "../assets/logo.png"
|
|
|
|
sharp(input)
|
|
// .tint({ r: 255, g: 240, b: 16 })
|
|
.linear(0.8, 1.5)
|
|
.toFile(output, (err, info) => {
|
|
if (err) {
|
|
console.error("处理图片出错:", err)
|
|
return
|
|
}
|
|
console.log("图片处理完成:", info)
|
|
})
|