Image
public struct Image : ViewWrapper of UIImageView A view that displays a single image or a sequence of animated images in your interface.
         Image("name")
         Image("./doc/name.jpg")
         Image("https://www.example.com")
- 
                  
                  The node behind the Image. DeclarationSwift public var node: ArgoKitNode? { get }
- 
                  
                  Initializer DeclarationSwift public init()
- 
                  
                  Initializer DeclarationSwift public init(_ name: @autoclosure @escaping () -> String?)ParametersnameThe name of the image asset or file. For images in asset catalogs, specify the name of the image asset. For PNG image files, specify the filename without the filename extension. For all other image file formats, include the filename extension in the name. 
- 
                  
                  Initializer DeclarationSwift public init(url: @autoclosure @escaping () -> URL?, placeholder: @autoclosure @escaping () -> String?)ParametersurlThe url of a image. placeholderThe name of the placeholder image asset or file. For images in asset catalogs, specify the name of the image asset. For PNG image files, specify the filename without the filename extension. For all other image file formats, include the filename extension in the name. 
- 
                  
                  Initializer DeclarationSwift public init(urlString: @autoclosure @escaping () -> String?, placeholder: @autoclosure @escaping () -> String?)ParametersurlStringThe string represent a valid URL For a image placeholderThe name of the placeholder image asset or file. For images in asset catalogs, specify the name of the image asset. For PNG image files, specify the filename without the filename extension. For all other image file formats, include the filename extension in the name. 
- 
                  
                  Initializer DeclarationSwift public init(_ name: @autoclosure @escaping () -> String?, bundle: @autoclosure @escaping () -> Bundle?)ParametersnameThe name of the image asset or file. For images in asset catalogs, specify the name of the image asset. For PNG image files, specify the filename without the filename extension. For all other image file formats, include the filename extension in the name. bundleThe bundle containing the image file or asset catalog. Specify nil to search the app’s main bundle. 
- 
                  
                  Initializer DeclarationSwift @available(iOS 13.0, *) public init(systemName name: @autoclosure @escaping () -> String?)ParametersnameThe name of the system symbol image. Use the SF Symbols app to look up the names of system symbol images. You can download this app from the design resources page at developer.apple.com. 
- 
                  
                  Initializer DeclarationSwift public init(cgImage: CGImage, scale: CGFloat, orientation: UIImage.Orientation = .up)ParameterscgImageThe Quartz image object. scaleThe scale factor to assume when interpreting the image data. Applying a scale factor of 1.0 results in an image whose size matches the pixel-based dimensions of the image. Applying a different scale factor changes the size of the image as reported by the size property. orientationThe orientation of the image data. You can use this parameter to specify any rotation factors applied to the image. 
- 
                  
                  Initializer DeclarationSwift public init(image: @autoclosure @escaping () -> UIImage?, highlightedImage: @autoclosure @escaping () -> UIImage? = nil)ParametersimageThe initial image to display in the image view. You may specify an image object that contains an animated sequence of images. highlightedImageThe image to display when the image view is highlighted. You may specify an image object that contains an animated sequence of images. 
- 
                  
                  Sets the displayed image. DeclarationSwift @discardableResult public func image(url: @autoclosure @escaping () -> URL?, placeholder: @autoclosure @escaping () -> String?) -> ImageParametersurlThe url of a image. placeholderThe name of the placeholder image asset or file. For images in asset catalogs, specify the name of the image asset. For PNG image files, specify the filename without the filename extension. For all other image file formats, include the filename extension in the name. Return Valueself 
- 
                  
                  Sets the displayed image. DeclarationSwift @discardableResult public func image(urlString: @autoclosure @escaping () -> String?, placeholder: @autoclosure @escaping () -> String?) -> ImageParametersurlStringThe string represent a valid URL For a image placeholderThe name of the placeholder image asset or file. For images in asset catalogs, specify the name of the image asset. For PNG image files, specify the filename without the filename extension. For all other image file formats, include the filename extension in the name. Return Valueself 
- 
                  
                  Sets the highlighted image displayed in the image view. DeclarationSwift @discardableResult public func highlightedImage(_ value: @autoclosure @escaping () -> UIImage?) -> ImageParametersvalueThe highlighted image displayed in the image view. Return Valueself 
- 
                  
                  Sets the configuration values to use when rendering the image. DeclarationSwift @available(iOS 13.0, *) @discardableResult public func preferredSymbolConfiguration(_ value: @autoclosure @escaping () -> UIImage.SymbolConfiguration?) -> ImageParametersvalueThe configuration values to use when rendering the image. Return Valueself 
- 
                  
                  Sets a Boolean value that determines whether user events are ignored and removed from the event queue. DeclarationSwift @discardableResult public func userInteractionEnabled(_ value: @autoclosure @escaping () -> Bool) -> ImageParametersvalueA Boolean value that determines whether user events are ignored and removed from the event queue. Return Valueself 
- 
                  
                  Sets a Boolean value that determines whether the image is highlighted. DeclarationSwift @discardableResult public func isHighlighted(_ value: @autoclosure @escaping () -> Bool) -> ImageParametersvalueA Boolean value that determines whether the image is highlighted. Return Valueself 
- 
                  
                  Sets an array of UIImage objects to use for an animation. DeclarationSwift @discardableResult public func animationImages(_ value: @autoclosure @escaping () -> [UIImage]?) -> ImageParametersvalueAn array of UIImage objects to use for an animation. Return Valueself 
- 
                  
                  Sets an array of UIImage objects to use for an animation when the view is highlighted. DeclarationSwift @discardableResult public func highlightedAnimationImages(_ value: @autoclosure @escaping () -> [UIImage]?) -> ImageParametersvalueAn array of UIImage objects to use for an animation when the view is highlighted. Return Valueself 
- 
                  
                  Sets the amount of time it takes to go through one cycle of the images. DeclarationSwift @discardableResult public func animationDuration(_ value: @autoclosure @escaping () -> TimeInterval) -> ImageParametersvalueThe amount of time it takes to go through one cycle of the images. Return Valueself 
- 
                  
                  Specifies the number of times to repeat the animation. DeclarationSwift @discardableResult public func animationRepeatCount(_ value: @autoclosure @escaping () -> Int) -> ImageParametersvaluethe number of times to repeat the animation. Return Valueself 
- 
                  
                  Sets a color used to tint template images in the view hierarchy. DeclarationSwift @discardableResult public func tintColor(_ value: @autoclosure @escaping () -> UIColor) -> ImageParametersvalueA color used to tint template images in the view hierarchy. Return Valueself 
- 
                  
                  Sets the displayed image. DeclarationSwift @discardableResult public func image(_ value: @autoclosure @escaping () -> UIImage?) -> ImageParametersvalueThe image displayed in the image view. Return Valueself 
- 
                  
                  Sets the displayed image. DeclarationSwift @discardableResult public func image(_ value: @autoclosure @escaping () -> UIImage?, placeholder: @autoclosure @escaping () -> UIImage?) -> ImageParametersvalueThe image displayed in the image view. placeholderThe placeholder image displayed in the image view if the value invalid Return Valueself 
- 
                  
                  Resizable image. DeclarationSwift @discardableResult public func resizable(capInsets: UIEdgeInsets = UIEdgeInsets(), resizingMode: UIImage.ResizingMode = .stretch) -> ImageParameterscapInsetsThe values to use for the cap insets. resizingModeThe mode with which the interior of the image is resized. Return Valueself 
- 
                  
                  Adjust the rendering mode of the image. DeclarationSwift @discardableResult public func renderingMode(_ renderingMode: UIImage.RenderingMode = .automatic) -> ImageParametersrenderingModeThe rendering mode to use for the new image. Return Valueself 
- 
                  
                  Starts animating the images in the receiver. DeclarationSwift @discardableResult public func startAnimating() -> ImageReturn Valueself 
- 
                  
                  Stops animating the images in the receiver. DeclarationSwift @discardableResult public func stopAnimating() -> ImageReturn Valueself 
- 
                  
                  Stops animating the images in the receiver. DeclarationSwift @discardableResult public func isAnimating() -> BoolReturn Valueself 
- 
                  
                  Get the size of the image displayed in the image view. DeclarationSwift public func imageSize() -> CGSizeReturn ValueThe size of the image displayed in the image view. 
 Image Structure Reference
      Image Structure Reference