≡
  • 网络编程
  • 数据库
  • CMS技巧
  • 软件编程
  • PHP笔记
  • JavaScript
  • MySQL
位置:首页 > 网络编程 > PHP笔记

php 从上传的文件创建缩略图的简单示例

人气:724 时间:2018-09-21

这篇文章主要为大家详细介绍了php 从上传的文件创建缩略图的简单示例,具有一定的参考价值,可以用来参考一下。

对php从上传的文件创建缩略图感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!

<? 
/**
 * php从上传的文件创建缩略图
 *
 * @param 
 * @author 四海网 www.q1010.com
 **/
if ($_REQUEST['action']=="add"){
$userfile = $HTTP_POST_FILES['photo']['tmp_name']; 
$userfile_name = $HTTP_POST_FILES['photo']['name']; 
$userfile_size = $HTTP_POST_FILES['photo']['size']; 
$userfile_type = $HTTP_POST_FILES['photo']['type'];
/////////////////////////  
//GET-DECLARE DIMENSIONS //
$dimension = getimagesize($userfile); 
$large_width = $dimension[0]; // GET PHOTO WIDTH 
$large_height = $dimension[1]; //GET PHOTO HEIGHT 
$small_width = 120; // DECLARE THUMB WIDTH 
$small_height = 90; // DECLARE THUMB HEIGHT
///////////////////////// 
//CHECK SIZE  //
if ($userfile_size>102400){ 
	 $error=1; 
	 $msg = "The photo is over 100kb. Please try again."; 
}
//////////////////////////////// 
// CHECK TYPE (IE AND OTHERS) //
if ($userfile_type="image/pjpeg"){ 
	if ($userfile_type!="image/jpeg"){ 
	   $error=1; 
	   $msg = "The photo must be JPG"; 
	} 
}
////////////////////////////// 
//CHECK WIDTH/HEIGHT // 
if ($large_width!=600 or$large_height!=400){ 
$error=1; 
$msg = "The photo must be 600x400 pixels"; 
}
/////////////////////////////////////////// 
//CREATE THUMB / UPLOAD THUMB AND PHOTO ///
if ($error<>1){ 
	$image = $userfile_name; //if you want to insert it to the database 
	$pic = imagecreatefromjpeg($userfile); 
	$small = imagecreatetruecolor($small_width,$small_height); 
	imagecopyresampled($small,$pic,0,0,0,0, $small_width, $small_height, $large_width, $large_height); 
	if (imagejpeg($small,"path/to/folder/to/upload/thumb".$userfile_name, 100)){     
		$large = imagecreatetruecolor($large_width,$large_height); 
	imagecopyresampled($large,$pic,0,0,0,0, $large_width, $large_height, $large_width, $large_height); 
		if (imagejpeg($large,"path/to/folder/to/upload/photo".$userfile_name, 100)) 
	  {} 
		   else {$msg="A problem has occured. Please try again."; $error=1;} 
	} 
	else { 
	  $msg="A problem has occured. Please try again."; $error=1; 
	} 
} 
//////////////////////////////////////////////
/// If everything went right a photo (600x400) and 
/// a thumb(120x90) were uploaded to the given folders 
} 

/*** 来自四海网(www.q1010.com) ***/
?>
经测试代码如下:

<html><head><title>create thumb www.q1010.com</title></head>
<body>
<form name="form1" enctype="multipart/form-data" action="thisfile.php?action=add" method="post">
Select Photo: <input type="file" name="photo">
<input type="submit" name="submit" value="CREATE THUMB AND UPLOAD">
</form>
</body
</html>

本文来自:http://www.q1010.com/173/634-0.html

注:关于php 从上传的文件创建缩略图的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。

关键词:缩略图

您可能感兴趣的文章

  • php 生成缩略图的示例,需要GD2 library
  • php 使用GD创建保持宽高比缩略图的简单示例
  • php 动态生成缩略图并输出显示的简单示例
  • PHP 获取图片的Exif、缩略图的简单示例
  • php 上传图片并生成缩略图的简单示例
  • php 原比例生成缩略图实现方法
  • php 图片生成缩略图函数的简单示例
  • php 生成缩略图的示例
  • PHP 实现图片上传并生成缩略图示例
上一篇:php 文件进行hash运算的简单示例
下一篇:php 使用post数组键值自动创建同名变量并赋值的简单示例
热门文章
  • PHP 写入WRITE编码为UTF8的文件示例
  • PHP 中文字符串截取函数示例:支持gb2312,gbk,big
  • PHP 简单留言板的制作示例
  • 解决Fatal error: Call to undefined function mb_convert_encoding() in错误问题
  • PHP语言基础(标记、注释、变量、数组、常量、函数)示例
  • php 生成迅雷链接的简单示例
  • php 获取短网址的实现方法
  • PHP 通用分页类的简单示例
  • PHP 使用文件方式导入导出整个MYSQL数据库的实现方法
  • php 获取MYSQL错误的简单示例
  • 最新文章
    • 解决PHP使用redis实现统计缓存MySQL压力的问题
    • php 简单的上传进度条的简单示例
    • php 给html中引用的js和css路径打上版本号的实现方法
    • php 实现计算年龄精准到年月日的实例
    • php+ajax无刷新分页的简单示例
    • 解决php+ajax无刷新上传图片的问题
    • 解决PHP生成HTML静态页面的问题
    • 解决PHP使用uniqid函数生成唯一ID的问题
    • 解决PHP防刷票的一些问题
    • 微信access_token的获取开发的实现方法

四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。