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

# Image.Scale

A scale to apply to vector images relative to text.

```
enum Scale
```

## Overview

Use this type with the [`imageScale(_:)`](/documentation/SwiftUI/View/imageScale(_:)) modifier, or the
[`imageScale`](/documentation/SwiftUI/EnvironmentValues/imageScale) environment key, to set the image scale.

The following example shows the three `Scale` values as applied to
a system symbol image, each set against a text view:

```
HStack { Image(systemName: "swift").imageScale(.small); Text("Small") }
HStack { Image(systemName: "swift").imageScale(.medium); Text("Medium") }
HStack { Image(systemName: "swift").imageScale(.large); Text("Large") }
```

![Vertically arranged text views that read Small, Medium, and](images/com.apple.SwiftUI/SwiftUI-EnvironmentAdditions-Image-scale@2x.png)

## Topics

### Getting image scales

[`Image.Scale.small`](/documentation/SwiftUI/Image/Scale/small)

A scale that produces small images.

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

A scale that produces medium-sized images.

[`Image.Scale.large`](/documentation/SwiftUI/Image/Scale/large)

A scale that produces large images.

## Relationships

### Conforms To

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

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

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

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

---

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)