We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6791653 commit 035e56fCopy full SHA for 035e56f
utils/getDefaultOgimage.js
@@ -1,6 +1,7 @@
1
export default function getDefaultOgimage(content) {
2
const encodedTitle = encodeURI(content.title);
3
- const textSize = content.title.length > 22 ? 52 : 60; // 正確な文字数ではないが大体の指標としては十分と判断する
+ const length = content.title.length;
4
+ const textSize = length > 30 ? 42 : length > 22 ? 52 : 60; // 正確な文字数ではないが大体の指標としては十分と判断する
5
return `https://images.blog.microcms.io/assets/f5d83e38f9374219900ef1b0cc4d85cd/92c09085ec6243cca78046fa644dd8cd/banner-bg.png?blend-mode=normal&blend-x=88&blend-align=middle&blend64=${Buffer.from(
6
`https://assets.imgix.net/~text?txtsize=${textSize}&w=672&txtfont=Hiragino%20Sans%20W8&txt-color=212149&txt=${encodedTitle}`,
7
'ascii'
0 commit comments