Imagick::setImageExtent

(PECL imagick 2, PECL imagick 3)

Imagick::setImageExtentDefine o tamanho da imagem

Descrição

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

Define o tamanho da imagem (ou seja, colunas e linhas).

Parâmetros

columns

rows

Valor Retornado

Retorna true em caso de sucesso.

Erros/Exceções

Lança uma exceção ImagickException em caso de erro.

adicione uma nota

Notas Enviadas por Usuários (em inglês) 2 notes

up
4
tim at komta dot com
15 years ago
This function actually sets the width and height of the image (in pixels).

Took me forever to figure this out.
up
2
charles dot p dot hall at gmail dot com
10 years ago
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.
To Top