> ## Documentation Index
> Fetch the complete documentation index at: https://intunedhq.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# ImageBufferContentItem

Image buffer content item for content-based extraction.

```typescript theme={null}
export interface ImageBufferContentItem {
  type: "image-buffer";
  image_type: "png" | "jpeg" | "gif" | "webp";
  data: Buffer;
}
```

## Properties

<ParamField path="type" type="'image-buffer'">
  The type of the content item, which is always "image-buffer".
</ParamField>

<ParamField path="image_type" type="'png' | 'jpeg' | 'gif' | 'webp'">
  The image format (e.g., "png", "jpeg", "gif", "webp").
</ParamField>

<ParamField path="data" type="Buffer">
  The Buffer containing the raw image data.
</ParamField>
