Skip to content

Latest commit

History

History

webapp

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

webapp

This is a web version of dominant_colours, which is available at https://dominant-colours.glitch.me/

A screenshot of the web app. It says 'find the dominant colours in an image' in bold letters at the top, then an illustration of two people in a Chinese dragon costume. On the right hand side are the dominant colours from that image: brown, blue, red and yellow, along with hex codes. At the bottom is a red-coloured link 'try another image'.

It's not meant to replace the command-line tool -- it won't get all the options, and uploading the image over HTTP means it's a lot slower. It's meant to be a quick replacement when I don't have easy access to a command line, e.g. when I'm on my phone.

How it works

It's a web app written in Flask, which shells out to the command-line tool to process an uploaded image. I've deployed it on Glitch, because I already had several projects running there and I knew how to get started quickly.

I have to compile MUSL libc-based versions of the CLI tool to get it working in Glitch.

Development

You should only need to run the web app for development; if you can install packages locally the CLI is probably a better option.

  1. Install the latest release of the CLI

  2. Install the Python requirements:

    $ pip3 install -r requirements.txt
  3. Run the web server script:

    $ python3 server.py

This will start a debug version of the web app at http://localhost:4711