0

所以我试图制作一个使用 PHP GD 上传和调整图像大小的脚本。然后将其保存到数据库中。我使用了这里找到的 SIMpleImage.php:

http://www.white-hat-web-design.co.uk/blog/resizing-images-with-php/

并使用以下脚本实现代码:

 $myfilename=$_POST['attachments'];

require('SimpleImage.php');

  $image = new SimpleImage();
  $image->load($myfilename);
  $image->resizeToWidth(150);
  $image->save('small-'.$myfilename);

  $image->load($myfilename);
  $image->resizeToWidth(230);
  $image->save('big-'.$myfilename);

myfilename 是附加到表单字段的变量。我一直在玩它,并确保我的服务器已安装 GD,并且 SimpleImage.php 文件已正确上传。但我不断收到大量错误。

Warning: imagesy(): supplied argument is not a valid Image resource in (File Path).php on line 77

所有这些都与我没有编写的 SimpleImage.php 相关,似乎很有意义,而且我知道其他人已经成功实现。大多数错误都与上述错误有关。有谁知道这个问题可能来自哪里?

4

1 回答 1

3

您无法使用 $_POST 从 HTML 表单中获取文件。要上传文件,您需要在表单中使用此字段:

<input type="file" name="attachments">

在您的 PHP 脚本中,您必须更改第一行:

$myfilename=$_FILES['attachments']['tmp_name'];
于 2012-09-06T12:48:45.257 回答