如何在imagick上禁用字体平滑?

I use php+imagick and can not turn off font smoothing. When I used the GD, could simply set a negative font color and smoothing switching off.

Here is an example how to render text without font smoothing:

$background = new Imagick('path/to/image.png');
$drawText = new ImagickDraw();
$drawText->setfont('images/hoogles.ttf');
$drawText->settextantialias(false);
$drawText->annotation(0, 0, 'Hello world!');
$background->drawimage($drawText);
$background->writeimage('path/to/result.png');