export_multiple_images
Export multiple Figma design elements as images in various formats. Specify file ID, node IDs, format (PNG, JPG, SVG, PDF), and scale to batch download design assets.
Instructions
批量导出多个节点的图片
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileId | Yes | Figma文件ID | |
format | No | 图片格式,默认为png | png |
nodeIds | Yes | 节点ID列表 | |
scale | No | 图片缩放比例,默认为1 |
Input Schema (JSON Schema)
{
"properties": {
"fileId": {
"description": "Figma文件ID",
"type": "string"
},
"format": {
"default": "png",
"description": "图片格式,默认为png",
"enum": [
"png",
"jpg",
"svg",
"pdf"
],
"type": "string"
},
"nodeIds": {
"description": "节点ID列表",
"items": {
"type": "string"
},
"type": "array"
},
"scale": {
"default": 1,
"description": "图片缩放比例,默认为1",
"maximum": 4,
"minimum": 0.01,
"type": "number"
}
},
"required": [
"fileId",
"nodeIds"
],
"type": "object"
}