All Projects → STRd6 → Pixel Editor

STRd6 / Pixel Editor

Licence: mit
It edits pixels

Programming Languages

javascript
184084 projects - #8 most used programming language
coffeescript
4710 projects

Projects that are alternatives of or similar to Pixel Editor

8192px
A collaborative pixel art experiment
Stars: ✭ 64 (-48.8%)
Mutual labels:  pixel-art, pixel
metal camera
iOS metal camera with GPU shaders.
Stars: ✭ 68 (-45.6%)
Mutual labels:  pixel-art, pixel
ColorByNumber-iOS
Color by Number: a pixel coloring game on iOS.
Stars: ✭ 50 (-60%)
Mutual labels:  pixel-art, pixel
Vixl44
Create pixel art inside your terminal using vim movements
Stars: ✭ 152 (+21.6%)
Mutual labels:  pixel-art, pixel
Pxltrm
🖌️ pxltrm - [WIP] A pixel art editor inside the terminal
Stars: ✭ 459 (+267.2%)
Mutual labels:  pixel-art, pixel
Obelisk.js
Build pixel isometric graphics with HTML5 canvas
Stars: ✭ 2,213 (+1670.4%)
Mutual labels:  pixel-art, pixel
Pixel
A real-time collaborative canvas, inspired by Reddit Place
Stars: ✭ 26 (-79.2%)
Mutual labels:  pixel-art, pixel
vscode-luna-paint
A raster image editor extension for VS Code
Stars: ✭ 235 (+88%)
Mutual labels:  pixel-art, pixel
vue-pixel-art
Vue Pixel Art is an easy way to draw your Pixel Arts. This project is refactored from CSS Collection - DotGen
Stars: ✭ 40 (-68%)
Mutual labels:  pixel-art, pixel
pixelino
Pixel-drawing app for iOS ✍️
Stars: ✭ 45 (-64%)
Mutual labels:  pixel-art, pixel
Rx
👾 Modern and minimalist pixel editor
Stars: ✭ 2,063 (+1550.4%)
Mutual labels:  pixel-art, pixel
Pixelizator
Swift/Python image pixelizer 🖼️.
Stars: ✭ 53 (-57.6%)
Mutual labels:  pixel-art, pixel
Pixelorama
A free & open-source 2D sprite editor, made with the Godot Engine! Available on Windows, Linux, macOS and the Web!
Stars: ✭ 2,535 (+1928%)
Mutual labels:  pixel-art, pixel
pixelart.js
punks.js - draw punk (pixel) art images using any design (in ascii text) in any colors; incl. 2x/4x/8x zoom for bigger sizes and more
Stars: ✭ 132 (+5.6%)
Mutual labels:  pixel-art, pixel
Pix
🎨 Pix is an online pixel art community where everyone can unleash their creativity on a 16x16 canvas, built with React-Native for iOS devices. 🚀
Stars: ✭ 86 (-31.2%)
Mutual labels:  pixel-art, pixel
Monsterpong
Our entry for Github GameOff 2018
Stars: ✭ 23 (-81.6%)
Mutual labels:  pixel-art, html5
Icon Machine
Web application for randomly generating pixel art icons.
Stars: ✭ 73 (-41.6%)
Mutual labels:  pixel-art, html5
Freeciv Web
Freeciv-web is an Open Source strategy game implemented in HTML5 and WebGL, which can be played online against other players, or in single player mode against AI opponents.
Stars: ✭ 1,626 (+1200.8%)
Mutual labels:  html5
Hilo3d
Hilo3d, a WebGL Rendering Engine.
Stars: ✭ 123 (-1.6%)
Mutual labels:  html5
Ddn
DDN, Data Delivery Network, a next generation blockchain system
Stars: ✭ 118 (-5.6%)
Mutual labels:  html5

Pixel Editor

It edits pixels

Live Demo

Embedding Instructions

The editor will send a postMessage to its parent window when "Save" is clicked.

One thing to note is that this is pointing to the latest version of https://danielx.net/pixel-editor/ so it might break out from under you. You'd probably want to host a stable version of the editor on your own service after you get it working if you care about that kind of thing.

    <html>
    <body>
    </body>
    <iframe src="https://danielx.net/pixel-editor/" width="100%" height="100%"></iframe>
    <script>
    window.addEventListener("message", receiveMessage, false);
    function receiveMessage(event) {
      var origin = event.origin;

      if (origin !== "https://danielx.net") {
        return;
      }

      var data = event.data;
      if (data.method === "save") {
        var image = data.image; // HTML5 Blob object
        var width = data.width;
        var height = data.height;

        // Post to your server, etc
        console.log(data);
      }
    }
    <\/script>
    </html>

Developer Instructions

Fork on Github https://github.com/STRd6/pixel-editor/fork

Go to http://danielx.net/editor

Load your fork by clicking "Load Repo" and typing in "/pixel-editor"

When it loads click "Run" to make sure it works

Click "New Feature" to start working on a feature branch

Modify the code and click "Run" to see your changes.

Click "Save" to push the code to your feature branch

Review your branch on Github to make a pull request.

Hopefully that works, but if not open an issue at https://github.com/STRd6/editor/issues/ and let me know what's not working.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].