我使用php + imagick并且无法关闭字体平滑。当我使用GD时,可以简单地设置负字体颜色并平滑关闭。
答案 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');