Popularity
9.3
Stable
Activity
0.0
Stable
140
15
9

Monthly Downloads: 12
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Development    

BigPixel alternatives and similar packages

Based on the "Development" category.
Alternatively, view BigPixel alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of BigPixel or a related project?

Add another 'Development' Package

README

BigPixel

BigPixel is an image editor for pixel art. It is aimed at creating graphics assets for retro or Minecraft-style 2D games. It supports the creation of pixelated images with 8x8 big pixels in 256 colours including some with transparency. It is an OpenGL-based cross-platform application. BigPixel currently only supports the BMP image format.

As BigPixel is a plain OpenGL application without platform-specific GUI support, you need to start it as a command line program and supply it with the name of a BMP image file as its sole command line argument. If the file exists, it will be opened for editing; otherwise, a new file will be created. All changes made to an image are persistent โ€” i.e., reflected in the on disk image without explicit saving.

Left mouse button           โ€” draw with current colour
Left mouse button + Shift   โ€” erase with transparency
Left mouse button + Control โ€” pick colour from image
Right mouse button          โ€” erase with transparency
'W', 'S', 'A', 'D'          โ€” enlarge canvas to the top, bottom, left, and right, respectively
'W', 'S', 'A', 'D' + Shift  โ€” shrink canvas from the top, bottom, left, and right, respectively

WARNING: There is currently no undo facility! Make copies of image files if you are unsure whether you like to keep the changes. (However, if you shrink the visible canvas, the removed content can be restored by simply enlarging the canvas again.)

[Screenshot of BigPixel](images/BigPixel-Island.png)

Installation

You need to have the Glasgow Haskell Compiler to compile from source. It is available as part of the Haskell Platform.

To install the current release of BigPixel from Hackage, simply execute

% cabal install BigPixel

To install the current version from GitHub,

% git clone https://github.com/mchakravarty/BigPixel.git
% cd BigPixel
% cabal install

Hacking

The Haskell code is relatively simple on purpose. It is part of an effort to teach programming to children. Contributions are most welcome, but please keep them in this spirit.