simple set of functions and cli for image manipulation
Go to file
2016-10-08 16:56:53 +03:30
app update module name, update readme 2016-10-08 16:37:37 +03:30
src update module name, update readme 2016-10-08 16:37:37 +03:30
test initial commit 2016-10-08 15:43:02 +03:30
.gitignore initial commit 2016-10-08 15:43:02 +03:30
dreamboy.jpg initial commit 2016-10-08 15:43:02 +03:30
LICENSE initial commit 2016-10-08 15:43:02 +03:30
output.png example 2016-10-08 16:46:43 +03:30
picedit.cabal update module name, update readme 2016-10-08 16:37:37 +03:30
README.md fix: library example, Picture -> Data.Picture 2016-10-08 16:56:53 +03:30
Setup.hs initial commit 2016-10-08 15:43:02 +03:30
stack.yaml initial commit 2016-10-08 15:43:02 +03:30

picedit

A simple CLI and API for image manipulation

CLI Usage

Usage: picedit <input> [OPTIONS]
Options:
  --contrast <n> - a number between -255 and 255
  --brightness <n> - a number between -255 and 255
  --gamma <n>
  --fade <n> - a number between 0 and 100
  --rotate <n> - rotate image by n degrees
  --grayscale - turn the image grayscale
  --invert - invert (negative) the image
  --output <filename> - output name, defaults to 'output.png'

Example:

stack exec picedit -- dreamboy.jpg --grayscale --contrast 180 --gamma 2 --rotate 180

Library

Documentation available at hackage

import Data.Picture

main = do
  pic <- readPicture "myfile.png"

  writePicturePng "output.png" (grayscale pic)