如何在PHP中将图像的dpi设置为300

时间:2014-10-08 08:58:58

标签: php zend-framework

我想在PHP中将现有图像的图像DPI更改为300.

我在数据库中有这个图像,我通过PHP获得它。

获取图像的代码如下:

$image = imagecreatefromstring ( base64_decode($matches[2]) );

imagepng($image, $imageFile);

我想将上面图像的DPI设置为300。

我正在使用Zend框架。

如何使用PHP设置它?

请帮帮我。

1 个答案:

答案 0 :(得分:0)

我会用imagemagick来完成这项工作

$oResamp = new Resampler;
$image = $oResamp->resample($source, $height, $width, 300);