• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • Imagick::setImageExtent()

    (PECL imagick 2.0.0)

    Sets the image size

    说明

    Imagick::setImageExtent(int $columns,int $rows): bool

    Sets the image size(i.e. columns & rows).

    参数

    $columns
    $rows

    返回值

    成功时返回TRUE

    错误/异常

    错误时抛出 ImagickException。

    This function actually sets the width and height of the image (in pixels).
    Took me forever to figure this out.
    In other graphics systems I have seen this referred to as Canvas size or re-dimensioning. It changes the dimension of the image without re-scaling. Added pixels appear black, removed pixels are simply cropped away.