Gmagick::setimageunits() 函数是 PHP 中的一个内置函数,用于设置特定图像的分辨率单位。此函数对图像没有视觉影响,只是更改分辨率单位,可以是 Undefinedresolution、PixelsPerInchResolution 或 PixelsPerCentimeterResolution 之一。
用法:
Gmagick Gmagick::setimageunits( int $resolution )
参数:此函数接受单个参数 $resolution,该参数保存与 RESOLUTION 常量之一相对应的整数。
下面给出了所有 RESOLUTION 常量的列表:
- Gmagick::RESOLUTION_UNDEFINED (0)
- Gmagick::RESOLUTION_PIXELSPERINCH (1)
- Gmagick::RESOLUTION_PIXELSPERCENTIMETER (2)
返回值:此函数在成功时返回一个 Gmagick 对象。
异常:此函数在出错时抛出 GmagickException。
下面给出的程序说明了 PHP 中的 Gmagick::setimageunits() 函数:
使用图像:
程序1:
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Set the image units
$gmagick->setImageUnits(Gmagick::RESOLUTION_PIXELSPERCENTIMETER);
// Get the image units
$units = $gmagick->getimageunits();
echo $units;
?>
输出:
2 // Which corresponds to Gmagick::RESOLUTION_PIXELSPERCENTIMETER
程序2:
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Set the image units
$gmagick->setImageUnits(Gmagick::RESOLUTION_PIXELSPERINCH);
// Display the image using new units
header("Content-Type:image/png");
echo $gmagick;
?>
输出:
参考: https://www.php.net/manual/en/gmagick.setimageunits.php
相关用法
- PHP Imagick setImageUnits()用法及代码示例
- PHP Gmagick getimagecolors()用法及代码示例
- PHP Gmagick writeimage()用法及代码示例
- PHP Gmagick shearimage()用法及代码示例
- PHP Gmagick addnoiseimage()用法及代码示例
- PHP Gmagick resizeimage()用法及代码示例
- PHP Gmagick rollimage()用法及代码示例
- PHP Gmagick getversion()用法及代码示例
- PHP Gmagick flopimage()用法及代码示例
- PHP Gmagick rotateimage()用法及代码示例
- PHP Gmagick scaleimage()用法及代码示例
- PHP Gmagick oilpaintimage()用法及代码示例
- PHP Gmagick raiseimage()用法及代码示例
- PHP Gmagick reducenoiseimage()用法及代码示例
- PHP Gmagick solarizeimage()用法及代码示例
- PHP Gmagick thumbnailimage()用法及代码示例
- PHP Gmagick spreadimage()用法及代码示例
- PHP Gmagick stripimage()用法及代码示例
- PHP Gmagick swirlimage()用法及代码示例
- PHP Gmagick resampleimage()用法及代码示例
- PHP Gmagick normalizeimage()用法及代码示例
- PHP Gmagick motionblurimage()用法及代码示例
- PHP Gmagick modulateimage()用法及代码示例
- PHP Gmagick minifyimage()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick setimageunits() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。