Type Method 型メソッド

image(_:sourceRect:scale:)

A shape style that fills a shape by repeating a region of an image. ある形状スタイル、それはある形状をある画像のある領域を繰り返すことによっていっぱいに満たします。

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

The image to be drawn. 描画されることになる画像。

sourceRect

A unit-space rectangle defining how much of the source image to draw. どのくらいソース画像を描画するか定義している単位空間矩形。 The results are undefined if sourceRect selects areas outside the [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 ShapeStyle.