imageresolution

(PHP 7 >= 7.2.0)

imageresolutionGet or set the resolution of the image

说明

imageresolution ( resource $image ) : mixed
imageresolution ( resource $image , int $res_x [, int $res_y = $res_x ] ) : mixed

imageresolution() allows to set and get the resolution of an image in DPI (dots per inch). If none of the optional parameters is given, the current resolution is returned as indexed array. If only res_x is given, the horizontal and vertical resolution are set to this value. If both optional parameters are given, the horizontal and vertical resolution are set to these values, respectively.

The resolution is only used as meta information when images are read from and written to formats supporting this kind of information (curently PNG and JPEG). It does not affect any drawing operations. The default resolution for new images is 96 DPI.

参数

image

由图象创建函数(例如imagecreatetruecolor())返回的图象资源。

res_x

The horizontal resolution in DPI.

res_y

The vertical resolution in DPI.

返回值

When used as getter (first signature), it returns TRUE on success, 或者在失败时返回 FALSE. When used as setter (second signature), it returns an indexed array of the horizontal and vertical resolution on success, 或者在失败时返回 FALSE.

范例

Example #1 Setting and getting the resolution of an image

<?php
$im 
imagecreatetruecolor(100100);
imageresolution($im200);
print_r(imageresolution($im));
imageresolution($im30072);
print_r(imageresolution($im));
?>

以上例程会输出:

Array
(
    [0] => 200
    [1] => 200
)
Array
(
    [0] => 300
    [1] => 72
)
相关文章
php gd 和图像处理 函数 取得图像类型的文件后缀php gd 和图像处理 函数 取得 getimagesize,exif read data,exif thumbnail,exif imagetype 所返回的图像类型的 mime 类型php gd 和图像处理 函数 output a bmp image to browser or filephp gd 和图像处理 函数 取得与指定的颜色加透明度最接近的颜色php gd 和图像处理 函数 取得与给定颜色最接近的色度的黑白色的索引php gd 和图像处理 函数 重采样拷贝部分图像并调整大小php gd 和图像处理 函数 拷贝部分图像并调整大小php gd 和图像处理 函数 crop an image to the given rectanglephp gd 和图像处理 函数 crop an image automatically using one of the available modesphp gd 和图像处理 函数 flips an image using a given modephp gd 和图像处理 函数 使用 freetype 2 字体将文本写入图像php gd 和图像处理 函数 对 gd 图像应用 gamma 修正php gd 和图像处理 函数 converts a palette based image to true colorphp gd 和图像处理 函数 以 png 格式将图像输出到浏览器或文件php gd 和图像处理 函数 get or set the resolution of the imagephp gd 和图像处理 函数 scale an image using the given new width and heightphp gd 和图像处理 函数 set the clipping rectanglephp gd 和图像处理 函数 set the interpolation methodphp gd 和图像处理 函数 将 xbm 图像输出到浏览器或文件php gd 和图像处理 函数 将 png 图像文件转换为 wbmp 图像文件
关注编程学问公众号