Skip to content

Instantly share code, notes, and snippets.

@gre
Forked from zxamplez/CODE
Last active December 14, 2015 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gre/5064603 to your computer and use it in GitHub Desktop.
Save gre/5064603 to your computer and use it in GitHub Desktop.
Convert a JPG to PNG with indexed colors (color quantization) - #PlayCLI and #imagemagick
val file = Play.getFile("example.jpg")
def colorsQuantization = Action {
Ok.stream(Enumerator.fromFile(file) &> convertColors(14))
.withHeaders(CONTENT_TYPE -> "image/png")
}
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2013 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment