ImageAffineMatrix:PHP 中的仿射变换变得简单

时间:2024-07-30 06:37:58
【文件属性】:

文件名称:ImageAffineMatrix:PHP 中的仿射变换变得简单

文件大小:38KB

文件格式:ZIP

更新时间:2024-07-30 06:37:58

PHP

ImageAffineMatrix - PHP 中的仿射变换变得简单 这是一个 PHP 类,用于对 2D 空间中的 Gd 图像和点执行仿射变换。 例子 $transform = new ImageAffineMatrix(); $transform->skew(deg2rad(-20), deg2rad(-5))->rotate(deg2rad(45))->scale(0.5, 0.5); $image = imageCreateFromPNG('example-source.png'); $newImage = $transform->transformImage($image); $transform->translate(-10, 5); list($newX, $newY) = $transform->transformPoint(10, 20); 应用程序接口 ImageAff


【文件预览】:
ImageAffineMatrix-master
----Readme.md(4KB)
----ImageAffineMatrix.php(10KB)
----examples()
--------example-point.php(210B)
--------example-css.php(766B)
--------example-image.png(33KB)
--------example-image.php(376B)
--------example-image-native.php(583B)

网友评论