标签: php
无论如何从服务器内的文件夹中选择一个图像,而不是在客户端从HTML提交,并使用PHP进行处理? 然后我想调整图像大小并将其另存为服务器上的同一文件夹。这可以通过点击客户端的按钮来实现。
答案 0 :(得分:0)
您可以使用this class。
// get image for manipulate from temp folder $image = new Image($sourcePath); // manipulate $image->resize($targetWidth, $targetHeight, Image::AUTO)->sharpen(1)->quality(95)->save($resultPath);