--- title: generateImageMetadata description: Learn how to generate multiple images in a single Metadata API special file. related: title: Next Steps description: View all the Metadata API options. links: - app/api-reference/file-conventions/metadata --- You can use `generateImageMetadata` to generate different versions of one image or return multiple images for one route segment. This is useful for when you want to avoid hard-coding metadata values, such as for icons. ## Parameters `generateImageMetadata` function accepts the following parameters: #### `params` (optional) An object containing the [dynamic route parameters](/docs/app/api-reference/file-conventions/dynamic-routes) object from the root segment down to the segment `generateImageMetadata` is called from. ```tsx filename="icon.tsx" switcher export function generateImageMetadata({ params, }: { params: { slug: string } }) { // ... } ``` ```jsx filename="icon.js" switcher export function generateImageMetadata({ params }) { // ... } ``` | Route | URL | `params` | | ------------------------------- | ----------- | ------------------------- | | `app/shop/icon.js` | `/shop` | `undefined` | | `app/shop/[slug]/icon.js` | `/shop/1` | `{ slug: '1' }` | | `app/shop/[tag]/[item]/icon.js` | `/shop/1/2` | `{ tag: '1', item: '2' }` | ## Returns The `generateImageMetadata` function should return an `array` of objects containing the image's metadata such as `alt` and `size`. In addition, each item **must** include an `id` value which will be passed to the props of the image generating function. | Image Metadata Object | Type | | --------------------- | ----------------------------------- | | `id` | `string` (required) | | `alt` | `string` | | `size` | `{ width: number; height: number }` | | `contentType` | `string` | ```tsx filename="icon.tsx" switcher import { ImageResponse } from 'next/og' export function generateImageMetadata() { return [ { contentType: 'image/png', size: { width: 48, height: 48 }, id: 'small', }, { contentType: 'image/png', size: { width: 72, height: 72 }, id: 'medium', }, ] } export default function Icon({ id }: { id: string }) { return new ImageResponse( (