# Image
Represents an image asset.

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## Image interface

Represents an image asset.

**Signature:**

```typescript
interface Image extends BaseAssetMixin
```

**Extends:** [BaseAssetMixin](/en/creator-api/types/base-asset-mixin)

## Properties

<table>
  <thead>
    <tr>
      <th>
        Property
      </th>

      <th>
        Modifiers
      </th>

      <th>
        Type
      </th>

      <th>
        Description
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        [height](/en/creator-api/types/image/height)
      </td>

      <td>
        `readonly`
      </td>

      <td>
        number
      </td>

      <td>
        Height of the image in pixels
      </td>
    </tr>

    <tr>
      <td>
        [type](/en/creator-api/types/image/type)
      </td>

      <td>
        `readonly`
      </td>

      <td>
        "IMAGE"
      </td>

      <td>
        Asset type
      </td>
    </tr>

    <tr>
      <td>
        [uri](/en/creator-api/types/image/uri)
      </td>

      <td>
        `readonly`
      </td>

      <td>
        string | null
      </td>

      <td>
        The data URI of the image (base64 encoded), or null if the image data has not been loaded yet or could not be fetched.
      </td>
    </tr>

    <tr>
      <td>
        [width](/en/creator-api/types/image/width)
      </td>

      <td>
        `readonly`
      </td>

      <td>
        number
      </td>

      <td>
        Width of the image in pixels
      </td>
    </tr>
  </tbody>
</table>
