imagick icon indicating copy to clipboard operation
imagick copied to clipboard

Imagick::spreadImage needs to allow PixelInterpolateMethod to be set.

Open Danack opened this issue 4 years ago • 0 comments

#if MagickLibVersion >= 0x700
	{
	//TODO allow PixelInterpolateMethod be set
	PixelInterpolateMethod method = BilinearInterpolatePixel;
	status = MagickSpreadImage(intern->magick_wand, radius, method);
	}
#else
	status = MagickSpreadImage(intern->magick_wand, radius);
#endif

Danack avatar Oct 22 '21 19:10 Danack