- Notifications
You must be signed in to change notification settings - Fork13
Generate Open Graph Images dynamically from HTML/CSS without a browser in SvelteKit
etherCorps/sveltekit-og
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Dynamically generate Open Graph images from an HTML+CSS template or Svelte component using fast and efficient conversion from HTML > SVG > PNG. Based onSatori. No headless browser required.
This project doesn't support edge services like vercel edge and cloudflare workers.
pnpm install @ethercorps/sveltekit-og
Create a file at/src/routes/og/+server.ts. Alternatively, you can use JavaScript by removing the types from this example.
// src/routes/og/+server.tsimport{ImageResponse}from'@ethercorps/sveltekit-og';import{RequestHandler}from'./$types';consttemplate=` <div tw="bg-gray-50 flex w-full h-full items-center justify-center"> <div tw="flex flex-col md:flex-row w-full py-12 px-4 md:items-center justify-between p-8"> <h2 tw="flex flex-col text-3xl sm:text-4xl font-bold tracking-tight text-gray-900 text-left"> <span>Ready to dive in?</span> <span tw="text-indigo-600">Start your free trial today.</span> </h2> <div tw="mt-8 flex md:mt-0"> <div tw="flex rounded-md shadow"> <a href="#" tw="flex items-center justify-center rounded-md border border-transparent bg-indigo-600 px-5 py-3 text-base font-medium text-white">Get started</a> </div> <div tw="ml-3 flex rounded-md shadow"> <a href="#" tw="flex items-center justify-center rounded-md border border-transparent bg-white px-5 py-3 text-base font-medium text-indigo-600">Learn more</a> </div> </div> </div> </div>`;constfontFile=awaitfetch('https://og-playground.vercel.app/inter-latin-ext-400-normal.woff');constfontData:ArrayBuffer=awaitfontFile.arrayBuffer();exportconstGET:RequestHandler=async()=>{returnawaitnewImageResponse(template,{height:630,width:1200,fonts:[{name:'Inter Latin',data:fontData,weight:400}]});};
Then runnpm dev and visitlocalhost:5173/og to view your generated PNG. Remember that hot module reloading does not work with server routes, so if you change your HTML or CSS, hard refresh the route to see changes.
When run in development, image headers containcache-control: no-cache, no-store. In production, image headers contain'cache-control': 'public, immutable, no-transform, max-age=31536000', which caches the image for 1 year. In both cases, the'content-type': 'image/png' is used.
Notice that our example uses TailwindCSS classes (e.g.tw="bg-gray-50"). Alternatively, your HTML can contain style attributes using any ofthe subset of CSS supported by Satori.
Satori supports only a subset of HTML and CSS. For full details, seeSatori’s documentation. Notably, Satori only supports flex-based layouts.
Satori supportsttf,otf, andwoff font formats;woff2 is not supported. To maximize the font parsing speed,ttf orotf are recommended overwoff.
By default,@ethercorps/sveltekit-og includes only 'Noto Sans' font. If you need to use other fonts, you can specify them as shown in the example. Notably, you can also import a font file that is stored locally within your project and are not required to use fetch.
The package exposes anImageResponse constructors, with the following options available:
import{ImageResponse}from'@ethercorps/sveltekit-og'import{SvelteComponent}from"svelte";// ...ImageResponse(element : string,options :{width ? :number=1200height ? :number=630,backgroundColor ? :string="#fff"fonts ? :{name:string,data:ArrayBuffer,weight:number,style:'normal'|'italic'}[]debug ? :boolean=falsegraphemeImages ? :Record<string,string>;loadAdditionalAsset ? :(languageCode: string,segment: string)=>Promise<SatoriOptions["fonts"]|string|undefined>;// Options that will be passed to the HTTP responsestatus ? :number=200statusText ? : stringheaders ? :Record<string,string>}{props})
Just install @ethercorps/sveltekit-ogNo wasm as of now, only support for nodejs based runtime.
Now you have to install dependency by yourself which will make it easier to build for all plateforms.
npm i @resvg/resvg-jsnpm i satoriFrom now on their will be no issues related to build, and soon this library going to have its own documentation.
- We don't provide access to satori from
@ethercorps/sveltekit-og.
Finally, We have added html to react like element like object converter out of the box and with svelte compiler.Now you can use{ toReactElement } with"@ethercorps/sveltekit-og" like:
- We have changed to function based instead of class based ImageResponse and componentToImageResponse.
- Removed
@resvg/resvg-wasmwith@resvg/resvg-jsbecause of internal errors. - Removed
satori-htmlbecause now we havetoReactElementout of the box with svelte compiler.If you find a problem related to undefined a please checkvite.config.js and add
define: { _a: 'undefined' } in config.
If you find any issue and have suggestion for this project please open a ticket and if you want to contribute please create a new discussion.
This project will not be possible without the following projects:
About
Generate Open Graph Images dynamically from HTML/CSS without a browser in SvelteKit
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.
Contributors4
Uh oh!
There was an error while loading.Please reload this page.
