# image

> The image Liquid object in a Shoplazza theme, representing a product or collection image that is rendered on the storefront with the img_url filter.

An image, such as a product or collection image.

:::tip
Use the [img\_url](../filters/media#img_url) filter to display images on the storefront.
:::

| Properties     | Type                                | Description                               |
| :------------- | :---------------------------------- | :---------------------------------------- |
| `alt`          | [string](../basics/liquid-types#string) | The alt text of the image.                |
| `aspect_ratio` | [number](../basics/liquid-types#number) | The aspect ratio of the image is decimal. |
| `height`       | [number](../basics/liquid-types#number) | The height of the image in pixels.        |
| `id`           | [string](../basics/liquid-types#string) | The ID of the image.                      |
| `path`         | [string](../basics/liquid-types#string) | The filename of the image.                |
| `src`          | [string](../basics/liquid-types#string) | The relative URL of the image.            |
| `width`        | [number](../basics/liquid-types#number) | The width of the image in pixels.         |

```json title="Object"
{
  "src":"\/\/cdn.shoplazza.com\/74f03d97e0ac95a1ab8e3e75327a7019.jpeg",
  "path":"74f03d97e0ac95a1ab8e3e75327a7019.jpeg",
  "width":1280,
  "height":1710,
  "id": "74f03d97e0ac95a1ab8e3e75327a7019",
  "alt":"",
  "aspect_ratio":0.7485380116959064
}
```
