Bitmap transformer
This is a basic bitmap parser and transformer.
Instructions
# Install with npm
npm install --global bitmap_transformer
# Run command line
# bitmap_transformer <transform type> <input bitmap> <output bitmap>
# Transformation types
# black
# mirror
# grey-scale
# red-scale
# invert
# Example
bitmap_transformer black ./img/palette-bitmap.bmp ./img/transformed-img/black.bmp
# Run tests
gulp test
# Run lint
gulp lint
# Watch both the tests and the linter
gulp watch
Bonus points
- Create a command line interface
- Can handle any sized bitmap
- Handle both endianess (not quite sure if this works completely, kind of had to test)
- Command line can select transform type
- Make project installable with npm