Popularity
4.7
Declining
Activity
0.0
Stable
12
3
0
Monthly Downloads: 19
Programming language: Haskell
License: GNU General Public License v3.0 only
picedit alternatives and similar packages
Based on the "Image Processing" category.
Alternatively, view picedit alternatives based on common mentions on social networks and blogs.
-
latex-svg-pandoc
DISCONTINUED. Render LaTeX formulae in pandoc documents to images with an actual LaTeX
Nutrient – The #1 PDF SDK Library, trusted by 10K+ developers
Other PDF SDKs promise a lot - then break. Laggy scrolling, poor mobile UX, tons of bugs, and lack of support cost you endless frustrations. Nutrient’s SDK handles billion-page workloads - so you don’t have to debug PDFs. Used by ~1 billion end users in more than 150 different countries.
Promo
www.nutrient.io

Do you think we are missing an alternative of picedit or a related project?
README
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
--compress <n> - approximate the (width - n)-th rank of image using SVD
a number between 0 (no compression) and image width (full compression)
note: this is not size compression
--output <filename> - output name, defaults to 'output.png'
Example:
stack exec picedit -- dreamboy.jpg --grayscale --contrast 180 --gamma 2 --rotate 180
Embedding images (the zombie is embedded at top left, 100x + 10y):
Library
Documentation available at hackage
import Data.Picture
main = do
pic <- readPicture "myfile.png"
writePicturePng "output.png" (grayscale pic)