Skip to main content

portrait

Portrait is a service, written in Deno, that generates dynamic Open Graph images that you can embed in your meta tags. Try it out on Zaubrik for free.

What is this?

Portrait preview This is Zaubrik’s service that for each keystroke generates customized dynamic images that you can embed in your meta tags. Lots of services like Twitter, Discord and LinkedIn can render the specified image to make your link stand out from the rest!

How does it work?

In short, what this service does, is take in a request through its REST API, generate an HTML Canvas using the provided variables and respond with a cached image having the appropriate image properties and headers. Try it out and deploy your own image generator on Deno.

Quick start

deno task serve

Todo

  • deno bundle seems to be broken. It works with deno upgrade --version 1.29.0.

  • More options

  • Some browser tests

  • Add markdown’s bold and italic syntax to the text input.

    const regexBold = /\*\*([^*]*)\*\*/g;
    const regexItalic = /\*([^*]*)\*/g;
    
    function parse(regExp: RegExp) {
      return (str: string) => {
        return [...str.matchAll(regExp)];
      };
    }
    
    const parseBold = parse(regexBold);
    const parseItalic = parse(regexItalic);
    
    let r1 = parseBold("aaa bb**ff**ccc,c**cc d**dd");