draw_pixels
Draw specific pixels on an Aseprite canvas by supplying x/y coordinates and hex colors for each pixel. Use it to programmatically add precise colored points to a sprite.
Instructions
Draw pixels on the canvas with specified colors.
Args: filename: Name of the Aseprite file to modify pixels: List of pixel data, each containing: {"x": int, "y": int, "color": str} where color is a hex code like "#FF0000"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pixels | Yes | ||
| filename | Yes |