update: 图标压缩尺寸改为 80

This commit is contained in:
fofolee 2021-01-14 21:33:44 +08:00
parent 8bdcd80c32
commit 6a6e333a18

View File

@ -651,7 +651,7 @@ getBase64Ico = async filepath => {
return compressedImage
}
getCompressedIco = async (img, width = 40) => {
getCompressedIco = async (img, width = 80) => {
let compressedImage = await pictureCompress({ img: img, width: width, height: width, type: 'png', quality: 1 })
return compressedImage.img
}