# DeformationResistedBarcode

The `DeformationResistedBarcode` interface represents a deformation resisted barcode.

```typescript
interface DeformationResistedBarcode {
    format: DBR.EnumBarcodeFormat;
    imageData: DSImageData;
    location: Quadrilateral;
}
```

## format

Possible formats of the localized barcode.

```typescript
format: EnumBarcodeFormat;
```

**See also**

* [EnumBarcodeFormat](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/enum-barcode-format.md)

## imageData

Image data of the deformation-resisted barcode image.

```typescript
imageData: DSImageData;
```

**See also**

* [DSImageData](https://www.dynamsoft.com/capture-vision/docs/web/programming/javascript/api-reference/core/basic-structures/ds-image-data.md)

## location

Location of the deformation resisted barcode within the image.

```typescript
location: Quadrilateral;
```

**See also**

* [Quadrilateral](https://www.dynamsoft.com/capture-vision/docs/web/programming/javascript/api-reference/core/basic-structures/quadrilateral.md)