> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-web/componentes/selphid-documentos/propiedades/imageformat.md).

# imageFormat

## Details

**Attribute:** `image-format`

**Type:** `string`

**Default value:** `"image/png"`

### ImageFormat

| Member | Value        | Description  |
| ------ | ------------ | ------------ |
| `PNG`  | `image/png`  | PNG format.  |
| `JPEG` | `image/jpeg` | JPEG format. |

## Morphology

```typescript
import { ImageFormat } from '@facephi/selphid-web-component';

selphid.imageFormat = ImageFormat.JPG;
```

## Description

MIME format of the document images returned by `facephi-selphid-widget`.

***

## Example

```jsx
import { ImageFormat } from '@facephi/selphid-web-component';

<facephi-selphid-widget
    imageFormat={ImageFormat.JPG}
/>
```
