$source = 'miphoto.jpg';
$imagick = new Imagick($source);
$imagick -> setImageUnits(2);
//0=undefined, 1=pixelsperInch, 2=PixelsPerCentimeter
$info = $imagick -> identifyImage();
print_r($info);
//ouput
/*
Array
(
[units] => PixelsPerCentimeter
)
Imagick::setImageUnits
(PECL imagick 2.0.0)
Imagick::setImageUnits — Sets the image units of resolution
Descrierea
bool Imagick::setImageUnits
( int $units
)
Avertizare
Această funcţie nu este documentată în prezent; este disponibilă numai lista sa de argumente.
Sets the image units of resolution.
Parametri
- units
-
Valorile întroarse
Întoarce TRUE în caz de succes.
Imagick::setImageUnits
salomonsanz at gmail dot com
08-Dec-2008 08:56
08-Dec-2008 08:56
