如何使用exif将图像dpi更改为300

时间:2013-05-06 10:59:49

标签: php image gd exif

我有一个jpeg图像。我想将此图像的dpi更改为300.

这是否可以在网络服务器上安装exif

enter image description here

如果是,我该怎么做?

$path='/home/mydev/mymagento/media/custom_product_preview/predefined_images/simpletext.jpg';            

                    $image = file_get_contents($path);              

                    $image = substr_replace($image, pack("Cnn", 0x01, 200, 200), 13, 5);
                        //  Mage::log($image,null,'DPI.log'); 

                    header("Content-type: image/jpeg");
                    header('Content-Disposition: attachment; filename="'.basename($path).'"');
                    echo $image;

我正在使用上面的代码。请帮忙吗?

0 个答案:

没有答案