0.1.1 • Published 1 year ago

@fat-buddha-designs/eleventy-social-images v0.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Eleventy Plugin: Generate Social Images (using SVG)

Dynamically generate social media images for your Eleventy pages. Unlike other similar plugins, this one uses SVG & does not depend on Puppeteer!


  1. Introduction
  2. How does it work?
  3. Installation and Usage
  4. Config Options
  5. Custom Fonts
  6. Credits

Introduction

This plugin provides an 11ty ShortCode that can be used to automatically generate social images in your Eleventy website.

For example:

{% GenerateSocialImage "Eleventy plugin for generating social images (using SVG)" %}

will generate the following social image (website, email address and author-image are set during configuration):

The social image is first created as SVG and then converted to PNG using Sharp.

How does it work?

  • Generates the image using SVG and then converts it into PNG using Sharp.
  • Custom logic to wrap the title line in SVG (as Sharp does not support SVG foreignObject).
  • Adds an author/promo image using Sharp composite (as Sharp does not support external image in SVG).

Installation and Usage

STEP 1: Install the package

npm install @fat-buddha-designs/eleventy-social-images/

STEP 2: Include it in your .eleventy.js config file

const generateSocialImages = require("@fat-buddha-designs/eleventy-social-images/");

module.exports = (eleventyConfig) => {
  eleventyConfig.addPlugin(generateSocialImages, {
    promoImage: "./src/img/my_profile_pic.jpg",
    outputDir: "./_site/img/preview",
    urlPath: "/img/preview",
    siteUrl: "Website ~ https://fatbuddhadesigns.co.uk/",
    siteEmail: "Email ~ info@fatbuddhadesigns.co.uk/",
    titleColor: "#fedb8b"
  });
};

Step 3: Use in your template

For example, in your base.njk template file, use it in the <head> for generating social image meta tags:

<meta property="og:image" content="{% GenerateSocialImage title %}" />
<meta name="twitter:image" content="{% GenerateSocialImage title %}" />

Config Options

OptionTypeDefaultDescription
promoImagestringPath to a promo Image (ideally, circular) that will be embedded in the social-images
outputDirstring"./_site/img/preview"Project-relative path to the output directory where images will be generated
urlPathstring"/img/preview"A path-prefix-esque directory for the <img src> attribute. e.g. /img/ for <img src="/img/MY_IMAGE.jpeg">
siteUrlstringThe website url to show on the social-image
siteEmailstringThe website email address to show on the social-image
titleColorstring"white"The color of the page-title
bgColorstringOptional background color. Otherwise, shows the gradient pattern
terminalBgColorstring"#404040"Background color of the terminal window design
hideTerminalbooleanfalseIf true, hides the terminal window design behind the title
customSVGstringCustom SVG code to be added to the image. Use this to add your own design or text anywhere on the image
customFontFilenamestringFilename of custom local font used for title (see Custom Fonts)
lineBreakAtnumber35Maximum row length for wrapping the title. Required because SVG does not have auto-wrapping text. Should depends on the font used

Custom Fonts

The Sharp library uses librsvg that uses fontconfig to load external fonts. Therefore, the following steps are required:

  1. Download your font file in project sub-folder. Eg: ./fonts/sans.ttf
  2. Create a file fonts.conf with the following content:

    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
    <dir prefix="default">fonts</dir>
    </fontconfig>
  3. Setup the following environment variable on your build server (eg: Netlify):

    FONTCONFIG_PATH=.

Credits