时间:2021-05-26
本文实例讲述了php修改上传图片尺寸的方法。分享给大家供大家参考。具体实现方法如下:
<?php// 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 imagelist($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 imageimagecopyresampled($tmp,$src,0,0,0,0,$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.?>希望本文所述对大家的php程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了php实现高效获取图片尺寸的方法。分享给大家供大家参考。具体分析如下:php获取图片尺寸的方法我们可以使用getimagesize获取图片尺寸,但
小伙伴们会遇到上传的图片被压缩或拉伸的非常难看的情况,这是因为上传的图片尺寸不对,需要修改图片的尺寸才能漂亮的呈现出来,那么怎么修改图片大小?下面小编就为大家介
淘宝卖家在填写商品信息的时候,需要上传商品的相关图片,所以卖家需要提前把宝贝的主图和明细图片拍出来。拍完之后需要对商品的尺寸进行修改,那么淘宝上传图片尺寸要
我们在上传和使用图片时往往会有图片尺寸的限制,而且并不是每一台电脑都装有可以修改图片尺寸的软件,别担心,只要你的电脑能够上网,这种问题马上就能引刃而解。1、百度
方法里包括了图片大小限制、图片尺寸、文件内容等等的判断。。。该案例是mvc下的demo,支持单张图片上传。publicActionResultUpload(){