ogplay
v0.0.0-development
Published
Enlightened library to convert HTML and CSS to SVG.
Downloads
5
Maintainers
Readme
Ogplay: Enlightened library to convert HTML and CSS to SVG.
Overview
Ogplay supports the JSX syntax, which makes it very straightforward to use. Here’s an overview of the basic usage:
// api.jsx
import ogplay from 'ogplay'
const svg = await ogplay(
<div style={{ color: 'black' }}>hello, world</div>,
{
width: 600,
height: 400,
fonts: [
{
name: 'Roboto',
// Use `fs` (Node.js only) or `fetch` to read the font as Buffer/ArrayBuffer and provide `data` here.
data: robotoArrayBuffer,
weight: 400,
style: 'normal',
},
],
},
)
Ogplay will render the element into a 600×400 SVG, and return the SVG string:
'<svg ...><path d="..." fill="black"></path></svg>'
Under the hood, it handles layout calculation, font, typography and more, to generate a SVG that matches the exact same HTML and CSS in a browser.
Documentation
JSX
Ogplay only accepts JSX elements that are pure and stateless. You can use a subset of HTML
elements (see section below), or custom React components, but React APIs such as useState
, useEffect
, dangerouslySetInnerHTML
are not supported.
Use without JSX
If you don't have JSX transpiler enabled, you can simply pass React-elements-like objects that have type
, props.children
and props.style
(and other properties too) directly:
await ogplay(
{
type: 'div',
props: {
children: 'hello, world',
style: { color: 'black' },
},
},
options
)
HTML Elements
Ogplay supports a limited subset of HTML and CSS features, due to its special use cases. In general, only these static and visible elements and properties that are implemented.
For example, the <input>
HTML element, the cursor
CSS property are not in consideration. And you can't use <style>
tags or external resources via <link>
or <script>
.
Also, Ogplay does not guarantee that the SVG will 100% match the browser-rendered HTML output since Ogplay implements its own layout engine based on the SVG 1.1 spec.
You can find the list of supported HTML elements and their preset styles here.
Images
You can use <img>
to embed images. However, width
, and height
attributes are recommended to set:
await ogplay(
<img src="https://picsum.photos/200/300" width={200} height={300} />,
options
)
When using background-image
, the image will be stretched to fit the element by default if you don't specify the size.
If you want to render the generated SVG to another image format such as PNG, it would be better to use base64 encoded image data (or buffer) directly as props.src
so no extra I/O is needed in Ogplay:
await ogplay(
<img src="data:image/png;base64,..." width={200} height={300} />,
// Or src={arrayBuffer}, src={buffer}
options
)
CSS
Ogplay uses the same Flexbox layout engine as React Native, and it’s not a complete CSS implementation. However, it supports a subset of the spec that covers most common CSS features:
Note:
- Three-dimensional transforms are not supported.
- There is no
z-index
support in SVG. Elements that come later in the document will be painted on top. box-sizing
is set toborder-box
for all elements.calc
isn't supported.overflow: hidden
andtransform
can't be used together.currentcolor
support is only available for thecolor
property.
Language and Typography
Advanced typography features such as kerning, ligatures and other OpenType features are not currently supported.
RTL languages are not supported either.
Fonts
Ogplay currently supports three font formats: TTF, OTF and WOFF. Note that WOFF2 is not supported at the moment. You must specify the font if any text is rendered with Ogplay, and pass the font data as ArrayBuffer (web) or Buffer (Node.js):
await ogplay(
<div style={{ fontFamily: 'Inter' }}>Hello</div>,
{
width: 600,
height: 400,
fonts: [
{
name: 'Inter',
data: inter,
weight: 400,
style: 'normal',
},
{
name: 'Inter',
data: interBold,
weight: 700,
style: 'normal',
},
],
}
)
Multiple fonts can be passed to Ogplay and used in fontFamily
.
Emojis
To render custom images for specific graphemes, you can use graphemeImages
option to map the grapheme to an image source:
await ogplay(
<div>Next.js is 🤯!</div>,
{
...,
graphemeImages: {
'🤯': 'https://cdnjs.cloudflare.com/ajax/libs/twemoji/14.0.2/svg/1f92f.svg',
},
}
)
The image will be resized to the current font-size (both width and height) as a square.
Locales
Ogplay supports rendering text in different locales. You can specify the supported locales via the lang
attribute:
await ogplay(
<div lang="ja-JP">骨</div>
)
Same characters can be rendered differently in different locales, you can specify the locale when necessary to force it to render with a specific font and locale. Check out this example to learn more.
Supported locales are exported as the Locale
enum type.
Dynamically Load Emojis and Fonts
Ogplay supports dynamically loading emoji images (grapheme pictures) and fonts. The loadAdditionalAsset
function will be called when a text segment is rendered but missing the image or font:
await ogplay(
<div>👋 你好</div>,
{
// `code` will be the detected language code, `emoji` if it's an Emoji, or `unknown` if not able to tell.
// `segment` will be the content to render.
loadAdditionalAsset: async (code: string, segment: string) => {
if (code === 'emoji') {
// if segment is an emoji
return `data:image/svg+xml;base64,...`
}
// if segment is normal text
return loadFontFromSystem(code)
}
}
)
Runtime and WASM
Ogplay can be used in browser, Node.js (>= 16), and Web Workers.
By default, Ogplay depends on asm.js for the browser runtime, and native module in Node.js. However, you can optionally load WASM instead by importing ogplay/wasm
and provide the initialized WASM module instance of Yoga to Ogplay:
import ogplay, { init } from 'ogplay/wasm'
import initYoga from 'yoga-wasm-web'
const yoga = initYoga(await fetch('/yoga.wasm').then(res => res.arrayBuffer()))
init(yoga)
await ogplay(...)
When running in the browser or in the Node.js environment, WASM files need to be hosted and fetched before initializing. asm.js can be bundled together with the lib. In this case WASM should be faster.
When running on the Node.js server, native modules should be faster. However there are Node.js environments where native modules are not supported (e.g. StackBlitz's WebContainers), or other JS runtimes that support WASM (e.g. Vercel's Edge Runtime, Cloudflare Workers, or Deno).
Additionally, there are other difference between asm.js, native and WASM, such as security and compatibility.
Overall there are many trade-offs between each choice, and it's better to pick the one that works the best for your use case.
Font Embedding
By default, Ogplay renders the text as <path>
in SVG, instead of <text>
. That means it embeds the font path data as inlined information, so succeeding processes (e.g. render the SVG on another platform) don’t need to deal with font files anymore.
You can turn off this behavior by setting embedFont
to false
, and Ogplay will use <text>
instead:
const svg = await ogplay(
<div style={{ color: 'black' }}>hello, world</div>,
{
...,
embedFont: false,
},
)
Debug
To draw the bounding box for debugging, you can pass debug: true
as an option:
const svg = await ogplay(
<div style={{ color: 'black' }}>hello, world</div>,
{
...,
debug: true,
},
)
Contribute
You can use the Vercel OG Image Playground to test and report bugs of Ogplay. Please follow our contribution guidelines before opening a Pull Request.
Author
- Md Sulaiman (@khulnasoft)