# IsImage

## Syntax

```
IsImage( value )
```

## Arguments

| Name  | Type | Required | Description                                    |
| ----- | ---- | -------- | ---------------------------------------------- |
| value | any  | Yes      | The value to check if it is a BoxImage object. |

## Returns

`Boolean` — Returns `true` if the value is a BoxImage object, otherwise `false`.

## Description

Determines whether the provided value is a BoxImage object. Useful for type checking before performing image operations.

## Example

```boxlang
// Check if a variable is an image
if ( IsImage( myVar ) ) {
    // Safe to use image BIFs
    myVar.flip();
}
```

## Related BIFs

* ImageNew
* ImageCopy
* ImageGetWidth

## Notes

* Returns `true` only for BoxImage objects.
* Use this BIF to validate variables before calling image-related functions.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://boxlang.ortusbooks.com/boxlang-framework/modularity/image-manipulation/reference/built-in-functions/isimage.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
