我正在用 php 处理一些图像,并决定使用这个库,因为它似乎完全符合我的需要。我的问题是该save()
方法继续覆盖原始文件而不是创建 b.jpg。
我的 php 文件:
<?php
include "lib/SimpleImage.php";
$img = new abeautifulsite\SimpleImage($_GET["path_source"]);
$img->rotate(90);
$img->save($_GET["path_dest"]);
?>
我正在传递参数 path_source=img/a.jpg 和 path_dest=img/b.jpg
我做错了什么?
我还在图书馆的 github 页面上打开了一个问题。