Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.37 KB

image-response.mdx

File metadata and controls

45 lines (36 loc) · 1.37 KB
title description
ImageResponse
API Reference for the ImageResponse constructor.

The ImageResponse constructor allows you to generate dynamic images using JSX and CSS. This is useful for generating social media images such as Open Graph images, Twitter cards, and more.

The following options are available for ImageResponse:

import { ImageResponse } from 'next/og'

new ImageResponse(
  element: ReactElement,
  options: {
    width?: number = 1200
    height?: number = 630
    emoji?: 'twemoji' | 'blobmoji' | 'noto' | 'openmoji' = 'twemoji',
    fonts?: {
      name: string,
      data: ArrayBuffer,
      weight: number,
      style: 'normal' | 'italic'
    }[]
    debug?: boolean = false

    // Options that will be passed to the HTTP response
    status?: number = 200
    statusText?: string
    headers?: Record<string, string>
  },
)

Supported CSS Properties

Please refer to Satori’s documentation for a list of supported HTML and CSS features.

Version History

Version Changes
v14.0.0 ImageResponse moved from next/server to next/og
v13.3.0 ImageResponse can be imported from next/server.
v13.0.0 ImageResponse introduced via @vercel/og package.