imagick icon indicating copy to clipboard operation
imagick copied to clipboard

Dithering doesn't appear to be working.

Open Danack opened this issue 3 years ago • 1 comments

http://local.phpimagick.com/Imagick/quantizeImage?measure_error=Enabled&colorspace=RGB&number_colors=64&tree_depth=8&dither=Floyd%E2%80%93Steinberg&image_path=Lorikeet

Danack avatar Oct 17 '21 21:10 Danack

Because the param is being parsed as a bool....

IM6 - MagickPosterizeImage(MagickWand *,const size_t,const MagickBooleanType), IM7 - MagickPosterizeImage(MagickWand *,const size_t,const DitherMethod),

IM6 - MagickQuantizeImages(MagickWand *,const size_t,const ColorspaceType, const size_t,const MagickBooleanType,const MagickBooleanType), IM7 - MagickQuantizeImage(MagickWand *,const size_t,const ColorspaceType, const size_t,const DitherMethod,const MagickBooleanType),

Danack avatar Oct 20 '21 10:10 Danack