ImageResponse

ImageResponse 构造函数允许您使用 JSX 和 CSS 生成动态图像。这对于生成社交媒体图像(如 Open Graph 图像、Twitter 卡片等)非常有用。

参考

参数

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

    // 将传递给 HTTP 响应的选项
    status?: number = 200
    statusText?: string
    headers?: Record<string, string>
  },
)

示例可在 Vercel OG Playground 中查看。

支持的 HTML 和 CSS 功能

ImageResponse 支持常见的 CSS 属性,包括 flexbox 和绝对定位、自定义字体、文本换行、居中和嵌套图像。

有关支持的 HTML 和 CSS 功能列表,请参阅 Satori 文档

行为

  • ImageResponse 使用 @vercel/ogSatori 和 Resvg 将 HTML 和 CSS 转换为 PNG。
  • 仅支持 flexbox 和部分 CSS 属性。高级布局(如 display: grid)将无法使用。
  • 最大包大小为 500KB。包大小包括您的 JSX、CSS、字体、图像和其他资源。如果超出限制,请考虑减少资源大小或在运行时获取。
  • 仅支持 ttfotfwoff 字体格式。为了最大化字体解析速度,ttfotfwoff 更推荐。

示例

路由处理器

ImageResponse 可在路由处理器中使用,以在请求时动态生成图像。

app/api/route.js
import { ImageResponse } from 'next/og'

export async function GET() {
  try {
    return new ImageResponse(
      (
        <div
          style={{
            height: '100%',
            width: '100%',
            display: 'flex',
            flexDirection: 'column',
            alignItems: 'center',
            justifyContent: 'center',
            backgroundColor: 'white',
            padding: '40px',
          }}
        >
          <div
            style={{
              fontSize: 60,
              fontWeight: 'bold',
              color: 'black',
              textAlign: 'center',
            }}
          >
            Welcome to My Site
          </div>
          <div
            style={{
              fontSize: 30,
              color: '#666',
              marginTop: '20px',
            }}
          >
            Generated with Next.js ImageResponse
          </div>
        </div>
      ),
      {
        width: 1200,
        height: 630,
      }
    )
  } catch (e) {
    console.log(`${e.message}`)
    return new Response(`Failed to generate the image`, {
      status: 500,
    })
  }
}

基于文件的元数据

您可以在 opengraph-image.tsx 文件中使用 ImageResponse,以在构建时或请求时动态生成 Open Graph 图像。

app/opengraph-image.tsx
import { ImageResponse } from 'next/og'

// 图像元数据
export const alt = 'My site'
export const size = {
  width: 1200,
  height: 630,
}

export const contentType = 'image/png'

// 图像生成
export default async function Image() {
  return new ImageResponse(
    (
      // ImageResponse JSX 元素
      <div
        style={{
          fontSize: 128,
          background: 'white',
          width: '100%',
          height: '100%',
          display: 'flex',
          alignItems: 'center',
          justifyContent: 'center',
        }}
      >
        My site
      </div>
    ),
    // ImageResponse 选项
    {
      // 为了方便,我们可以重用导出的 opengraph-image
      // 尺寸配置来设置 ImageResponse 的宽度和高度。
      ...size,
    }
  )
}

自定义字体

您可以通过在选项中提供 fonts 数组,在 ImageResponse 中使用自定义字体。

app/opengraph-image.tsx
import { ImageResponse } from 'next/og'
import { readFile } from 'node:fs/promises'
import { join } from 'node:path'

// 图像元数据
export const alt = 'My site'
export const size = {
  width: 1200,
  height: 630,
}

export const contentType = 'image/png'

// 图像生成
export default async function Image() {
  // 字体加载,process.cwd() 是 Next.js 项目目录
  const interSemiBold = await readFile(
    join(process.cwd(), 'assets/Inter-SemiBold.ttf')
  )

  return new ImageResponse(
    (
      // ...
    ),
    // ImageResponse 选项
    {
      // 为了方便,我们可以重用导出的 opengraph-image
      // 尺寸配置来设置 ImageResponse 的宽度和高度。
      ...size,
      fonts: [
        {
          name: 'Inter',
          data: interSemiBold,
          style: 'normal',
          weight: 400,
        },
      ],
    }
  )
}

版本历史

版本变更内容
v14.0.0ImageResponsenext/server 移至 next/og
v13.3.0ImageResponse 可从 next/server 导入。
v13.0.0通过 @vercel/og 包引入 ImageResponse

On this page