ImageRepresentation
struct ImageRepresentation : Equatable
An image representation of a visual instruction component.
-
File formats of visual instruction component images.
See moreDeclaration
Swift
public enum Format : String -
Initializes an image representation bearing the image at the given base URL.
Declaration
Swift
public init(imageBaseURL: URL?) -
The URL whose path is the prefix of all the possible URLs returned by
imageURL(scale:format:).Declaration
Swift
public let imageBaseURL: URL? -
Returns a remote URL to the image file that represents the component.
Declaration
Swift
public func imageURL(scale: CGFloat? = nil, format: Format = .png) -> URL?Parameters
scaleThe image’s scale factor. If this argument is unspecified, the current screen’s native scale factor is used. Only the values 1, 2, and 3 are currently supported.
formatThe file format of the image. If this argument is unspecified, PNG is used.
Return Value
A remote URL to the image.
Install in Dash
ImageRepresentation Structure Reference