0

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

这可能exif安装在网络服务器上吗?

在此处输入图像描述

如果是,我该怎么做?

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

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

4

0 回答 0