编程语言
首页 > 编程语言> > 在file_get_contents之后在php中调整图像大小

在file_get_contents之后在php中调整图像大小

作者:互联网

谁能告诉我如何解决以下问题:

include('php/resizeImage.php');

if($_POST['uploadlink']){
    $url = $_POST['uploadlink'];
    $urlImage = file_get_contents($url);

    if ($_POST['filename']){
        $filename = $_POST['filename'].".jpg";
    } else {
        $urlinfo = parse_url($url);
        $filename = basename($urlinfo['path']);
    }

    $image = new ResizeImage();
    $image->load($filename);
    $image->resizeToWidth(300);
    $image->save($filename);

    file_put_contents("images/upload/".$filename, $urlImage);

  }

在从URL接收到来自file_get_contents的图像数据后,我想通过我的resizeImage脚本来调整其大小,该脚本将图像的文件名作为参数.

编辑:ResizeImage函数加载和resizeToWidth:

function load($filename) {

      $image_info = getimagesize($filename);
      $this->image_type = $image_info[2];
      if( $this->image_type == IMAGETYPE_JPEG ) {

         $this->image = imagecreatefromjpeg($filename);
      } elseif( $this->image_type == IMAGETYPE_GIF ) {

         $this->image = imagecreatefromgif($filename);
      } elseif( $this->image_type == IMAGETYPE_PNG ) {

         $this->image = imagecreatefrompng($filename);
      }
   }

function resizeToWidth($width) {
      $ratio = $width / $this->getWidth();
      $height = $this->getheight() * $ratio;
      $this->resize($width,$height);
   }

当用户通过输入type =’file’选择本地图像时,我不会遇到任何麻烦.

    if (isset($_FILES["uploadedfile"])){
        $ufilename = $_FILES["uploadedfile"]["name"];
        $ufiletmpname = $_FILES["uploadedfile"]["tmp_name"];

        $image = new ResizeImage();
        $image->load($ufiletmpname);
        $image->resizeToWidth(300);
        $image->save($ufiletmpname);
}

另一个问题:
我将用户名转发到脚本中,因为我想为每个用户创建一个单独的文件夹,因此他们只能看到自己的上载图像.

$admin = $_GET['admin'];
file_put_contents("images/upload/".$admin."/".$filename, $urlImage);

为什么这对我不起作用?

谢谢.

解决方法:

简单.
只需更改您的ResizeImage类的代码即可使其能够操作除文件名之外的图像二进制内容.

您的第二个问题也很简单.
设置您的PHP安装,使其在屏幕上显示错误(当然是对于开发服务器!),您将看到问题的确切答案:“为什么这对我不起作用?”.

error_reporting(E_ALL);
ini_set('display_errors',1);

通常会有所帮助.
(还要确保您的代码没有执行任何HTTP重定向,这可能隐藏您的错误消息)

标签:file-get-contents,image,url,upload,php
来源: https://codeday.me/bug/20191102/1988214.html