HSB hue value differences
Posted: 2017-02-03T05:59:44-07:00
I'm seeing a difference in how HSB hue values work between 6.8.8 and how they work on 6.8.9 and 6.9.3.
I've run this
on four different Linux distros using the version of ImageMagick that's included with them.
Running it on
and on
produces this
http://imgur.com/a/BIm8y
Which does not look how I expected it to from reading the documentation.
Running the same command on
and on
produces this
http://imgur.com/a/mNcPS
which looks how I expect.
Was the way HSB hue values work changed between 6.8.8 and 6.8.9? Is there something messed up about openSUSE and SLED ImageMagick packages? Something else?
I've run this
Code: Select all
$ for i in {0..360};do convert -size 10x100 xc:"hsb($i,100%, 50%)" MIFF:- ;done| montage -tile x1 -geometry +0+0 - /tmp/hsbmontage.png
Running it on
Code: Select all
$ head -2 /etc/os-release
NAME="openSUSE Leap"
VERSION="42.2"
$ convert --version
Version: ImageMagick 6.8.8-1 Q16 x86_64 2016-12-23 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib cairo djvu fontconfig freetype jng jp2 jpeg lcms ltdl lzma openexr pangocairo png rsvg tiff webp wmf x xml zlib
$
Code: Select all
$ head -2 /etc/os-release
NAME="SLED"
VERSION="12-SP1"
$ convert --version
Version: ImageMagick 6.8.8-1 Q16 x86_64 2016-12-13 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib cairo djvu fontconfig freetype jng jp2 jpeg lcms ltdl lzma openexr pangocairo png rsvg tiff webp wmf x xml zlib
$
http://imgur.com/a/BIm8y
Which does not look how I expected it to from reading the documentation.
Running the same command on
Code: Select all
$ head -2 /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)"
NAME="Raspbian GNU/Linux"
$ convert --version
Version: ImageMagick 6.8.9-9 Q16 arm 2016-11-27 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml zlib
$
Code: Select all
$ head -2 /etc/os-release
NAME=Fedora
VERSION="25 (Workstation Edition)"
$ convert --version
Version: ImageMagick 6.9.3-0 Q16 x86_64 2016-05-14 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2016 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC Modules OpenMP
Delegates (built-in): bzlib cairo djvu fftw fontconfig freetype gslib jbig jng jp2 jpeg lcms ltdl lzma openexr pangocairo png ps rsvg tiff webp wmf x xml zlib
mike@crash:tmp>
http://imgur.com/a/mNcPS
which looks how I expect.
Was the way HSB hue values work changed between 6.8.8 and 6.8.9? Is there something messed up about openSUSE and SLED ImageMagick packages? Something else?