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

时间:2010-07-01 23:08:06

标签: php fonts imagick smoothing

我使用php + imagick并且无法关闭字体平滑。当我使用GD时,可以简单地设置负字体颜色并平滑关闭。

1 个答案:

答案 0 :(得分:0)

以下是如何在没有字体平滑的情况下渲染文本的示例:

$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');