Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 imagemagick 的新手,有人能告诉我如何使用 Imagemagick 更改图像分辨率吗?
尝试这个
$im = new Imagick(); $im->setResolution(new_X-resolution,new_Y-resolution);
要更改分辨率,您需要使用以下命令:
-resample horizontalxvertical
但请记住,必须使用以下方式设置原始分辨率:
-density width -density widthxheight
在您可以使用重新采样之前。如果通过单击左侧的勾号解决了您的疑问,请选择此作为正确答案。