Color quantization: Difference between revisions

m
m (bugfix/force RGB no alpha)
Line 1,276:
179.849 207.594 109.973
209.229 221.18 204.513</lang>
 
=={{header|Julia}}==
The Images package for Julia uses the ImageMagick libraries by default, but this Julia module does not currently implement ImageMagick's support for color quantization. However, once ImageMagick is installed for the Images Julia module, a direct call to ImageMagick's convert command is possible.
<lang julia>
const execstring =`convert Quantum_frog.png -dither None -colors 16 Quantum_frog_new.png`
run(execstring)
</lang>
 
 
=={{header|Kotlin}}==
4,103

edits