feat: crop images before optimizing them to ensure proper aspect ratio
This commit is contained in:
parent
7a3a7d65e4
commit
605baf5836
4 changed files with 94 additions and 28 deletions
|
@ -1,18 +1,59 @@
|
||||||
import Image from '@11ty/eleventy-img';
|
import Image from '@11ty/eleventy-img';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
import Sharp from 'sharp';
|
||||||
import htmlmin from 'html-minifier-terser';
|
import htmlmin from 'html-minifier-terser';
|
||||||
|
|
||||||
const stringifyAttributes = (attributeMap) =>
|
const stringifyAttributes = attributeMap =>
|
||||||
Object.entries(attributeMap)
|
Object.entries(attributeMap)
|
||||||
.map(([attribute, value]) => (value === undefined ? '' : `${attribute}="${value}"`))
|
.map(([attribute, value]) =>
|
||||||
|
value === undefined
|
||||||
|
? ''
|
||||||
|
: `${attribute}="${typeof value === 'object' ? value.value : value}"`
|
||||||
|
)
|
||||||
.join(' ');
|
.join(' ');
|
||||||
|
|
||||||
|
const resizeImage = async (src, width, height, mode, shape) => {
|
||||||
|
const commonOptions = {
|
||||||
|
fit: mode,
|
||||||
|
position: 'center',
|
||||||
|
background: { r: 255, g: 255, b: 255, alpha: 1 },
|
||||||
|
};
|
||||||
|
|
||||||
|
if (shape === 'square') {
|
||||||
|
const buffer = await Sharp(src)
|
||||||
|
.resize({
|
||||||
|
width: Math.min(width, height),
|
||||||
|
height: Math.min(width, height),
|
||||||
|
...commonOptions,
|
||||||
|
})
|
||||||
|
.toBuffer();
|
||||||
|
|
||||||
|
return { buffer, width: Math.min(width, height), height: Math.min(width, height) };
|
||||||
|
} else if (shape === 'vertical') {
|
||||||
|
const aspectRatio = 2 / 3;
|
||||||
|
const targetWidth = Math.min(Math.floor(height * aspectRatio), width);
|
||||||
|
const buffer = await Sharp(src)
|
||||||
|
.resize({
|
||||||
|
width: targetWidth,
|
||||||
|
height: Math.floor(targetWidth / aspectRatio),
|
||||||
|
...commonOptions,
|
||||||
|
})
|
||||||
|
.toBuffer();
|
||||||
|
|
||||||
|
return { buffer, width: targetWidth, height: Math.floor(targetWidth / aspectRatio) };
|
||||||
|
} else {
|
||||||
|
const buffer = await Sharp(src).toBuffer();
|
||||||
|
|
||||||
|
return { buffer, width, height };
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export const img = async (
|
export const img = async (
|
||||||
src,
|
src,
|
||||||
alt = '',
|
alt = '',
|
||||||
className,
|
className,
|
||||||
loading = 'lazy',
|
loading = 'lazy',
|
||||||
shape = 'square',
|
shape = '',
|
||||||
icon,
|
icon,
|
||||||
maxWidth = 1248,
|
maxWidth = 1248,
|
||||||
sizes = '90vw',
|
sizes = '90vw',
|
||||||
|
@ -21,13 +62,11 @@ export const img = async (
|
||||||
const isLocal = src.includes('src/assets');
|
const isLocal = src.includes('src/assets');
|
||||||
const imageExists = async () => {
|
const imageExists = async () => {
|
||||||
try {
|
try {
|
||||||
const isOk = await fetch(src, { method: 'HEAD' }).then((res) => res.ok);
|
return await fetch(src, { method: 'HEAD' }).then(res => res.ok);
|
||||||
return isOk;
|
|
||||||
} catch {
|
} catch {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const generateImage = async () => {
|
const generateImage = async () => {
|
||||||
const widths = [320, 570, 880, 1024, 1248];
|
const widths = [320, 570, 880, 1024, 1248];
|
||||||
const metadata = await Image(src, {
|
const metadata = await Image(src, {
|
||||||
|
@ -40,31 +79,58 @@ export const img = async (
|
||||||
return `${name}-${width}w.${format}`;
|
return `${name}-${width}w.${format}`;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const lowsrc = metadata.jpeg[metadata.jpeg.length - 1];
|
const lowsrc = metadata.jpeg[metadata.jpeg.length - 1];
|
||||||
|
|
||||||
const imageSources = Object.values(metadata)
|
if (shape === 'square' || shape === 'vertical') {
|
||||||
.map(
|
const { buffer, width: resizedWidth, height: resizedHeight } = await resizeImage(
|
||||||
(imageFormat) =>
|
`./_site/${lowsrc.url}`,
|
||||||
|
lowsrc.width,
|
||||||
|
lowsrc.height,
|
||||||
|
'cover',
|
||||||
|
shape
|
||||||
|
);
|
||||||
|
const resizedImageBase64 = buffer.toString('base64');
|
||||||
|
const resizedImageSrc = `data:image/${lowsrc.format};base64,${resizedImageBase64}`;
|
||||||
|
const imageSources = Object.values(metadata)
|
||||||
|
.map((imageFormat) =>
|
||||||
`<source type="${imageFormat[0].sourceType}" srcset="${imageFormat
|
`<source type="${imageFormat[0].sourceType}" srcset="${imageFormat
|
||||||
.map((entry) => entry.srcset)
|
.map((entry) => entry.srcset)
|
||||||
.join(', ')}" sizes="${sizes}">`
|
.join(', ')}" sizes="${sizes}">`
|
||||||
)
|
)
|
||||||
.join('\n');
|
.join('\n');
|
||||||
|
const imageAttributes = stringifyAttributes({
|
||||||
|
src: resizedImageSrc,
|
||||||
|
width: resizedWidth,
|
||||||
|
height: resizedHeight,
|
||||||
|
alt,
|
||||||
|
class: className,
|
||||||
|
loading,
|
||||||
|
decoding: 'async',
|
||||||
|
});
|
||||||
|
const imageElement = `<picture>${imageSources}<img ${imageAttributes} /></picture>`;
|
||||||
|
|
||||||
const imgageAttributes = stringifyAttributes({
|
return htmlmin.minify(imageElement, { collapseWhitespace: true });
|
||||||
src: lowsrc.url,
|
} else {
|
||||||
width: lowsrc.width,
|
const imageSources = Object.values(metadata)
|
||||||
height: lowsrc.height,
|
.map((imageFormat) =>
|
||||||
alt,
|
`<source type="${imageFormat[0].sourceType}" srcset="${imageFormat
|
||||||
class: className,
|
.map((entry) => entry.srcset)
|
||||||
loading,
|
.join(', ')}" sizes="${sizes}">`
|
||||||
decoding: 'async',
|
)
|
||||||
});
|
.join('\n');
|
||||||
|
const imgageAttributes = stringifyAttributes({
|
||||||
|
src: lowsrc.url,
|
||||||
|
width: lowsrc.width,
|
||||||
|
height: lowsrc.height,
|
||||||
|
alt,
|
||||||
|
class: className,
|
||||||
|
loading,
|
||||||
|
decoding: 'async',
|
||||||
|
});
|
||||||
|
const imageElement = `<picture>${imageSources}<img ${imgageAttributes} /></picture>`;
|
||||||
|
|
||||||
const imageElement = `<picture>${imageSources}<img ${imgageAttributes} /></picture>`;
|
return htmlmin.minify(imageElement, { collapseWhitespace: true });
|
||||||
|
}
|
||||||
return htmlmin.minify(imageElement, { collapseWhitespace: true });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const generatePlaceholder = async () => {
|
const generatePlaceholder = async () => {
|
||||||
|
@ -72,5 +138,5 @@ export const img = async (
|
||||||
return htmlmin.minify(placeholderElement, { collapseWhitespace: true });
|
return htmlmin.minify(placeholderElement, { collapseWhitespace: true });
|
||||||
};
|
};
|
||||||
|
|
||||||
return isLocal ? await generateImage() : await imageExists().then(async (exists) => (exists ? await generateImage() : await generatePlaceholder()));
|
return isLocal ? await generateImage() : await imageExists().then(async exists => (exists ? await generateImage() : await generatePlaceholder()));
|
||||||
};
|
};
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "5.3.13",
|
"version": "5.4.13",
|
||||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<div class="avatar__wrapper flex--centered">
|
<div class="avatar__wrapper flex--centered">
|
||||||
{% capture authorAlt %}{{ mention.author.name | escape }}{% endcapture %}
|
{% capture authorAlt %}{{ mention.author.name | escape }}{% endcapture %}
|
||||||
{% capture fallbackIcon %}{% tablericon "user" authorAlt %}{% endcapture %}
|
{% capture fallbackIcon %}{% tablericon "user" authorAlt %}{% endcapture %}
|
||||||
{% image mention.author.photo, authorAlt, 'avatar__image', 'lazy', 'rounded', fallbackIcon %}
|
{% image mention.author.photo, authorAlt, 'avatar__image', 'lazy', 'square', fallbackIcon %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="comment">
|
<div class="comment">
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<div class="avatar__wrapper flex--centered">
|
<div class="avatar__wrapper flex--centered">
|
||||||
{% capture authorAlt %}{{ mention.author.name | escape }}{% endcapture %}
|
{% capture authorAlt %}{{ mention.author.name | escape }}{% endcapture %}
|
||||||
{% capture fallbackIcon %}{% tablericon "user" authorAlt %}{% endcapture %}
|
{% capture fallbackIcon %}{% tablericon "user" authorAlt %}{% endcapture %}
|
||||||
{% image mention.author.photo, authorAlt, 'avatar__image', 'lazy', 'rounded', fallbackIcon %}
|
{% image mention.author.photo, authorAlt, 'avatar__image', 'lazy', 'square', fallbackIcon %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Reference in a new issue