-4
if (move_uploaded_file($File_Tmp,"product_images/".$File_Name)) {
     // To Rename the uploaded file
    $Random = rand()*1200;
    $File_New_Name = $Random.".".$File_Extension;
    rename("product_images/".$File_Name,"product_images/".$File_New_Name);  
}

现在我希望上传的图像是自定义大小。请帮我写代码并解释它是如何工作的...谢谢...请仅使用 PHP 代码。

4

2 回答 2

1

我遵循了 Jarrod 的本教程,并获得了很好的结果。它包括输入图像类型的错误捕获。

http://net.tutsplus.com/tutorials/php/image-resizing-made-easy-with-php/

于 2013-03-27T00:15:04.580 回答
0

imageMagik 的一个例子

<?php

    $image = new Imagick($filename);
    $image->resizeImage(200,200, imagick::FILTER_LANCZOS, 0.9, true);
    $image->writeImage($filename);

?>

在此处阅读文档:resizeImage

和安装文档:安装

于 2013-03-27T00:16:14.770 回答