当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick setResolution()用法及代码示例


Imagick::setResolution()函数是PHP中的内置函数,用于设置图像的分辨率。此函数不会更改图像的实际分辨率,而只是在读取或创建图像之前将其设置在Imagick对象中,要更改图像分辨率,请使用setImageResolution()函数。在读取图像或创建图像之前,需要先调用此函数。

用法:

bool Imagick::setResolution( float $x_resolution, float $y_resolution )

参数:该函数接受上述和以下描述的两个参数:


  • $x_resolution:它指定水平分辨率。
  • $y_resolution:它指定垂直分辨率。

返回值:成功时此函数返回TRUE。

异常:该函数在错误时引发ImagickException。

以下示例程序旨在说明PHP中的Imagick::setResolution()函数:

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Set the resolution 
$imagick->setResolution(18, 13); 
  
// Create new image 
$imagick->newimage(100, 100, 'none');    
  
// Read the properties of image 
print("<pre>".print_r($imagick->identifyImage(), true)."</pre>"); 
?>

输出:

Array
(
[imageName] =>
[mimetype] => image/x-
[units] => Undefined
[type] => Bilevel
[colorSpace] => sRGB
[compression] => Undefined
[fileSize] => 0B
[geometry] => Array
(
[width] => 100
[height] => 100
)
// you can see the temporary resolution here
[resolution] => Array
(
[x] => 18
[y] => 13
)

[signature] => e7e2dcff542de95352682dc186432e98f0188084896773f1973276b0577d5305
)

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Set the resolution 
$imagick->setResolution(10, 10); 
  
// Read the image 
$imagick->readimage( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Read the properties of image 
print("<pre>".print_r($imagick->identifyImage(), true)."</pre>"); 
?>

Output:
Array
(
[imageName] =>
[mimetype] => image/png
[format] => PNG (Portable Network Graphics)
[units] => PixelsPerCentimeter
[type] => TrueColorAlpha
[colorSpace] => sRGB
[compression] => Zip
[fileSize] => 45.4KB
[geometry] => Array
(
[width] => 667
[height] => 184
)
// Here resolution is changed because new image is read
[resolution] => Array
(
[x] => 37.8
[y] => 37.8
)

[signature] => f64054f5bcb4cfb82c6126eff6d3d4e6be7d0e72d5620033442cecb4b9feabbd
)

参考: https://www.php.net/manual/en/imagick.setresolution.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick setResolution() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。