Pixcil

pixcil Actions Status License

Simple pixel art editor with (almost) infinite canvas (online editor).

Pixcil image

Features

How to build

Web

You can use Cargo to build Pixcil.

```console // 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 ```

Windows

console $ cargo run --release -p pixcil_windows

Other platforms

Pixcil is created using Pagurus. So other Pagurus supported runtimes can be used to run (with some restrictions): console // Run Pixcil using SDL runtime. $ git clone https://github.com/sile/pagurus.git $ cd pagurus $ cargo run --release -p sdl_runtime -- /path/to/pixcil.wasm