1200 byte savings in some cases with gifs
This commit is contained in:
parent
7b04c35c94
commit
e68ad369e9
1 changed files with 22 additions and 7 deletions
|
@ -35,15 +35,30 @@ export default class ImageOptimization extends Plugin {
|
||||||
data = await sharp(file).png({ quality: 100 }).toBuffer();
|
data = await sharp(file).png({ quality: 100 }).toBuffer();
|
||||||
}
|
}
|
||||||
if (type == "gif") {
|
if (type == "gif") {
|
||||||
// not heavy optimizations, not a fan tbf, but whatever :shrug:
|
const gif = sharp(file, { animated: true });
|
||||||
data = await sharp(file, { animated: true })
|
const pageCount = (await gif.metadata()).pages;
|
||||||
.gif({ colors: 16 })
|
if (pageCount == 1) {
|
||||||
.toBuffer();
|
data = await sharp(file, { animated: false })
|
||||||
|
.gif({ colors: 16 })
|
||||||
|
.toBuffer();
|
||||||
|
} else {
|
||||||
|
data = await sharp(file, { animated: true })
|
||||||
|
.gif({ colors: 16 })
|
||||||
|
.toBuffer();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(nonOptimized.byteLength < data.byteLength) {
|
if (nonOptimized.byteLength < data.byteLength) {
|
||||||
if(this.logging) {
|
if (this.logging) {
|
||||||
console.log("❌ " + filePath + "("+nonOptimized.byteLength+"B) optimized was " + data.byteLength + "B. It has been skipped.");
|
console.log(
|
||||||
|
"❌ " +
|
||||||
|
filePath +
|
||||||
|
"(" +
|
||||||
|
nonOptimized.byteLength +
|
||||||
|
"B) optimized was " +
|
||||||
|
data.byteLength +
|
||||||
|
"B. It has been skipped."
|
||||||
|
);
|
||||||
}
|
}
|
||||||
data = nonOptimized;
|
data = nonOptimized;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue