buildPixelArt
Convert any image into Minecraft pixel art by specifying dimensions, coordinates, and orientation. Generate up to 256x256 block designs directly in-game using colored blocks.
Instructions
Build pixel art from an image in Minecraft (requires cheats/operator permissions). Converts an image to pixel art using colored blocks. Maximum size is 256x256 blocks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
facing | No | Direction the pixel art faces: 'north', 'south', 'east', or 'west' (default: 'north') | |
height | Yes | Height of the pixel art in blocks (max 256) | |
imagePath | Yes | Path or URL to the image file to convert to pixel art | |
width | Yes | Width of the pixel art in blocks (max 256) | |
x | Yes | X coordinate for the bottom middle of the pixel art | |
y | Yes | Y coordinate for the bottom of the pixel art | |
z | Yes | Z coordinate for the bottom middle of the pixel art |
Input Schema (JSON Schema)
{
"properties": {
"facing": {
"description": "Direction the pixel art faces: 'north', 'south', 'east', or 'west' (default: 'north')",
"type": "string"
},
"height": {
"description": "Height of the pixel art in blocks (max 256)",
"type": "number"
},
"imagePath": {
"description": "Path or URL to the image file to convert to pixel art",
"type": "string"
},
"width": {
"description": "Width of the pixel art in blocks (max 256)",
"type": "number"
},
"x": {
"description": "X coordinate for the bottom middle of the pixel art",
"type": "number"
},
"y": {
"description": "Y coordinate for the bottom of the pixel art",
"type": "number"
},
"z": {
"description": "Z coordinate for the bottom middle of the pixel art",
"type": "number"
}
},
"required": [
"imagePath",
"width",
"height",
"x",
"y",
"z"
],
"type": "object"
}