export_node_as_image
Export any Figma node as an image in formats like PNG, JPG, SVG, or PDF by specifying the node ID and scaling, simplifying design asset extraction.
Instructions
Export a node as an image from Figma
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Export format | |
nodeId | Yes | The ID of the node to export | |
scale | No | Export scale |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"description": "Export format",
"enum": [
"PNG",
"JPG",
"SVG",
"PDF"
],
"type": "string"
},
"nodeId": {
"description": "The ID of the node to export",
"type": "string"
},
"scale": {
"description": "Export scale",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"nodeId"
],
"type": "object"
}