我有一个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;
我正在使用上面的代码。请帮忙吗?