The image to be drawn. 描画されることになる画像。
Type Method
型メソッド
image(_:
image(_:sourceRect:scale:)
A shape style that fills a shape by repeating a region of an image.
ある形状スタイル、それはある形状をある画像のある領域を繰り返すことによっていっぱいに満たします。
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
Technology
- Swift
UI
Declaration 宣言
static func image(_ image: Image
, sourceRect: CGRect
= CGRect(x: 0, y: 0, width: 1, height: 1), scale: CGFloat
= 1) -> ImagePaint
Available when
Self
is ImagePaint
.Parameters パラメータ
image
sourceRect
A unit-space rectangle defining how much of the source image to draw. どのくらいソース画像を描画するか定義している単位空間矩形。 The results are undefined if
source
selects areas outside theRect [0, 1]
range in either axis.scale
A scale factor applied to the image during rendering.
Discussion 議論
For information about how to use shape styles, see Shape
.