---
title: "texture(from:crop:)"
framework: spritekit
role: symbol
role_heading: Instance Method
path: "spritekit/skview/texture(from:crop:)"
---

# texture(from:crop:)

Renders a portion of a node’s contents and returns the rendered image as a texture.

## Declaration

```swift
func texture(from node: SKNode, crop: CGRect) -> SKTexture?
```

## Parameters

- `node`: The node object that is the root node of the tree you want to render to the texture.
- `crop`: A rectangle in the node’s coordinate system that describes the area to be rendered.

## Mentioned in

Creating a New Node By Rendering To a Texture

## Return Value

Return Value A SpriteKit texture that holds the rendered image.

## Discussion

Discussion The node being rendered does not need to appear in the view’s presented scene. The new texture is created with a size equal to the size of the crop rectangle. If the node is not a scene node, it is rendered with a clear background color ([``SKColor clear]).

## See Also

### Snapshotting Nodes to a Texture

- [texture(from:)](spritekit/skview/texture(from:).md)
- [Creating a New Node By Rendering To a Texture](spritekit/creating-a-new-node-by-rendering-to-a-texture.md)
