<!--
{
  "availability" : [
    "iOS: 13.0.0 -",
    "iPadOS: 13.0.0 -",
    "macCatalyst: 13.0.0 -",
    "macOS: 10.15.0 -",
    "tvOS: 13.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 6.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/Image/Interpolation",
  "metadataVersion" : "0.1.0",
  "role" : "Enumeration",
  "symbol" : {
    "kind" : "Enumeration",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI5ImageV13InterpolationO"
  },
  "title" : "Image.Interpolation"
}
-->

# Image.Interpolation

The level of quality for rendering an image that requires interpolation,
such as a scaled image.

```
enum Interpolation
```

## Overview

The [`interpolation(_:)`](/documentation/SwiftUI/Image/interpolation(_:)) modifier specifies the interpolation
behavior when using the [`resizable(capInsets:resizingMode:)`](/documentation/SwiftUI/Image/resizable(capInsets:resizingMode:))
modifier on an [`Image`](/documentation/SwiftUI/Image). Use this behavior to prioritize rendering
performance or image quality.

## Topics

### Getting interpolation options

[`Image.Interpolation.high`](/documentation/SwiftUI/Image/Interpolation/high)

A value that indicates a high level of interpolation quality, which
may slow down image rendering.

[`Image.Interpolation.low`](/documentation/SwiftUI/Image/Interpolation/low)

A value that indicates a low level of interpolation quality, which may
speed up image rendering.

[`Image.Interpolation.medium`](/documentation/SwiftUI/Image/Interpolation/medium)

A value that indicates a medium level of interpolation quality,
between the low- and high-quality values.

[`Image.Interpolation.none`](/documentation/SwiftUI/Image/Interpolation/none)

A value that indicates SwiftUI doesn’t interpolate image data.

## Relationships

### Conforms To

[`Equatable`](/documentation/Swift/Equatable)

[`Hashable`](/documentation/Swift/Hashable)

[`SendableMetatype`](/documentation/Swift/SendableMetatype)

[`Sendable`](/documentation/Swift/Sendable)

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)