image(from:scale:)
Returns an image object that contains the specified portion of the drawing.
Declaration
func image(from rect: CGRect, scale: CGFloat) -> UIImagefunc image(from rect: CGRect, scale: CGFloat) -> NSImageParameters
- rect:
The portion of the drawing that you want to capture. Specify a rectangle in the canvas’ coordinate system.
- scale:
The scale factor at which to create the image. Specifying scale factors greater than
1.0creates an image with more detail. For example, you might specify a scale factor of2.0or3.0when displaying the image on a Retina display.
Return Value
A new image object that contains the rendered content.
Discussion
This method creates a new image and renders content from the canvas into that image at the specified scale factor.