PHP上传图片生成多张不同尺寸缩略图示例源码

所属分类: PHP源码-PHP笔记    2024-01-22 08:51:09

PHP上传图片生成多张不同尺寸缩略图示例源码 ie兼容6

PHP上传图片生成多张不同尺寸缩略图示例源码(共7个文件)

    • image_upload_submit.php
    • functions.php
    • index.php

使用方法

<?php
require_once('functions.php');

if(isset($_FILES['image_file_input']))
 {
	$output['status']=FALSE;
	set_time_limit(0);
	$allowedImageType = array("image/gif",   "image/jpeg",   "image/pjpeg",   "image/png",   "image/x-png"  );
	
	if ($_FILES['image_file_input']["error"] > 0) {
		$output['error']= "File Error";
	}
	elseif (!in_array($_FILES['image_file_input']["type"], $allowedImageType)) {
		$output['error']= "Invalid image format";
	}
	elseif (round($_FILES['image_file_input']["size"] / 1024) > 4096) {
		$output['error']= "Maximum file upload size is exceeded";
	} else {
	    $temp_path = $_FILES['image_file_input']['tmp_name'];
		$file = pathinfo($_FILES['image_file_input']['name']);
		$fileType = $file["extension"];
		$fileName = rand(222, 888) . time() . ".$fileType";
		
		$small_thumbnail_path = "uploads/small/";
		createFolder($small_thumbnail_path);
		$small_thumbnail = $small_thumbnail_path . $fileName;
		
		$medium_thumbnail_path = "uploads/medium/";
		createFolder($medium_thumbnail_path);
		$medium_thumbnail = $medium_thumbnail_path . $fileName;
		
		$large_thumbnail_path = "uploads/large/";
		createFolder($large_thumbnail_path);
		$large_thumbnail = $large_thumbnail_path . $fileName;
		
		$thumb1 = createThumbnail($temp_path, $small_thumbnail,$fileType, 150, 93);
		$thumb2 = createThumbnail($temp_path, $medium_thumbnail, $fileType, 300, 185);
		$thumb3 = createThumbnail($temp_path, $large_thumbnail,$fileType, 550, 340);
				
		if($thumb1 && $thumb2 && $thumb3) {
		    $output['status']=TRUE;
		    $output['small']= $small_thumbnail;
		    $output['medium']= $medium_thumbnail;
        		$output['large']= $large_thumbnail;
		}
	}
	echo json_encode($output);
}
?>	

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / PHP笔记

PHP简单的悬浮于页面右侧在线购物车源码

一款php购物车实现示例代码,核心功能:商品列表、加入购物车、清空购物车。
  PHP笔记
 6324  0

PHP在线填写表单留言保存数据库代码

一款简单的在线表单提交php实现源码,核心功能:表单填写带js字段验证,提交表单保存到Mysql数据表。
  PHP笔记
 1313  0

PHP+AJAX上传图片并显示图片预览实现源码

一款基于php图片上传实现源码,选择本地图片,然后点击提交上传按钮,即可将图片上传至服务器指定文件夹,并显示预览图片。
  PHP笔记
 8465  0

PHP简单的产品管理系统网站源码

一款响应式产品信息管理系统,主要核心功能:产品列表展示、产品添加、产品编辑、产品删除、列表分页等,该程序没有后台系统,简单的实现数据增删查改。
  PHP笔记
 2236  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论