php 修改上传图片尺寸示例

为大家讲述一下 php修改上传图片的尺寸,感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
经测试代码如下:

<?php
/**
 * 修改上传图片的尺寸
 *
 * @param 
 * @arrange (编程之家) jb51.cc
 **/
// This is the temporary file created by PHP
$uploadedfile = $_FILES['uploadfile']['tmp_name'];
 
// Create an Image from it so we can do the resize
$src = imagecreatefromjpeg($uploadedfile);
 
// Capture the original size of the uploaded image
list($width,$height)=getimagesize($uploadedfile);
 
// For our purposes,I have resized the image to be
// 600 pixels wide,and maintain the original aspect
// ratio. This prevents the image from being stretched
// or squashed. If you prefer some max width other than
// 600,simply change the $newwidth variable
$newwidth=600;
$newheight=($height/$width)*600;
$tmp=imagecreatetruecolor($newwidth,$newheight);
 
// this line actually does the image resizing,copying from the original
// image into the $tmp image
imagecopyresampled($tmp,$src,$newwidth,$newheight,$width,$height);
 
// now write the resized image to disk. I have assumed that you want the
// resized,uploaded image file to reside in the ./images subdirectory.
$filename = images/. $_FILES['uploadfile']['name'];
imagejpeg($tmp,$filename,100);
 
imagedestroy($src);
imagedestroy($tmp); // NOTE: PHP will clean up the temp file it created when the request
// has completed.


/***   代码来自编程之家 jb51.cc(jb51.cc)   ***/

相关文章

文章浏览阅读8.4k次,点赞8次,收藏7次。SourceCodester Onl...
文章浏览阅读3.4k次,点赞46次,收藏51次。本文为大家介绍在...
文章浏览阅读1.1k次。- php是最优秀, 最原生的模板语言, 替代...
文章浏览阅读1.1k次,点赞18次,收藏15次。整理K8s网络相关笔...
文章浏览阅读1.2k次,点赞22次,收藏19次。此网络模型提供了...
文章浏览阅读1.1k次,点赞14次,收藏19次。当我们谈论网络安...