imageaffine

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

imageaffine返回经过仿射变换后的图像,剪切区域可选

说明

imageaffine(GdImage $image, array $affine, ?array $clip = null): GdImage|false

警告

本函数还未编写文档,仅有参数列表。

参数

image

由图象创建函数(例如imagecreatetruecolor())返回的 GdImage 对象。

affine

数组,其中键为 0 至 5 的数字。

clip

数组,其中键为 "x","y","width" 和 "height";或者 null

返回值

成功则返回仿射变换后的图像对象, 或者在失败时返回 false

更新日志

版本 说明
8.0.0 clip 现在允许为 null。
8.0.0 成功时此函数现在返回 GDImage 实例;之前返回 resource
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top