суббота, 18 сентября 2010 г.

How To Set the Image dpi to 300 in PHP



<?php
//Get jpeg image contents
ob_start();
imagejpeg($image""100);
$image ob_get_contents();
ob_end_clean();
//Or read jpeg image
$image file_get_contents($file);
//Replace header image info to set DPI as units and the density for X and Y
//First parameter are units for X and Y densities (0x00 No units, 0x01 DPI, 0x02 DPC)
//Second parameter is the X density
//Third parameter is the Y density

$image substr_replace($imagepack("Cnn"0x01300300), 135);
header("Content-type: image/jpeg");
header('Content-Disposition: attachment; filename="'.basename($file).'"'); 

echo 
$image;?>

Комментариев нет: