An Open Graph image generator for images that you can embed in your meta tags. Written in Deno.
Attributes
Includes Deno configuration
Repository
Current version released
8 months ago
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.
This is Zaubrik’s service that for each keystroke generates customized dynamic images that you can embed in your What is this?
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 withdeno upgrade --version 1.29.0
.More options
Some browser tests
Add markdown’s bold and italic syntax to the text input.
- Idea: ctx.measureText from the Canvas API and RegExp?
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");