Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 942 Bytes

File metadata and controls

32 lines (25 loc) · 942 Bytes

Color-Query

This is a tool for manipulating the HSV values of images using a DSL called colorQuery language. This DSL is inpsired by the kusto query language, with docs here.

The website can be accessed here. Supports mobile and common browsers

Usage

Upload an image then run a query using the DSL by writing the query and clicking 'Submit Query'.

A sample query is:

pixels
| hue = hue + 180
| hue = hue - 360 if hue > 360

This will invert the colors of the provided image.

Getting Started

This is a Next.js project bootstrapped with create-next-app.

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.