imagesetclip

(PHP 7 >= 7.2.0, PHP 8)

imagesetclipSet the clipping rectangle

Descripción

imagesetclip(
    GdImage$image,
    int$x1,
    int$y1,
    int$x2,
    int$y2
): bool

imagesetclip() sets the current clipping rectangle, i.e. the area beyond which no pixels will be drawn.

Parámetros

image

Un recurso image, es devuelto por una de las funciones de creación de imágenes, como imagecreatetruecolor().

x1

The x-coordinate of the upper left corner.

y1

The y-coordinate of the upper left corner.

x2

The x-coordinate of the lower right corner.

y2

The y-coordinate of the lower right corner.

Valores devueltos

Devuelve true en caso de éxito o false en caso de error.

Historial de cambios

VersiónDescripción
8.0.0image expects a GdImage instance now; previously, a valid gdresource was expected.

Ver también

To Top