Pixel art editor
Pixcil ======
Simple pixel art editor with (almost) infinite canvas.
Online editors & editor extensions:
- GitHub Pages (PWA)
- VSCode Extension
Features
- Simple and intuitive UI
- (Almost) infinite canvas
- Support PNG file format
Key Bindings
| Key | Action | |----------|-----------------------| | TAB | Switch to next tool | | BACKTAB | Switch to prev tool | | p | Switch to PICK tool | | d | Switch to DRAW tool | | f | Switch to FILL tool | | e | Switch to ERASE tool | | s | Switch to SELECT tool | | m | Switch to MOVE tool | | Ctrl-z | undo | | Ctrl-y | redo | | < | Switch to prev frame | | > | Switch to next frame |
How to build
Web
You can use Cargo to build Pixcil.
// Build.
$ git clone https://github.com/sile/pixcil.git
$ cd pixcil
$ cargo build --release --target wasm32-unknown-unknown
$ ls target/wasm32-unknown-unknown/release/pixcil.wasm
// Start an HTTP server and visit the root page in your browser. $ cd web/ $ start-your-favorite-http-server