-
php 上传图片并按比例生成指定大小图
这是一款图象缩略函数,把上传的新图片给$srcfile然后进行文件按$thumbwidth 缩小图宽最大尺寸与$thumbheitht 缩小图高最大尺寸,生成小图.
图象缩略函数,参数说明:
$srcfile 原图地址; $dir 新图目录 $thumbwidth 缩小图宽最大尺寸 $thumbheitht 缩小图高最大尺寸 $ratio 默认等比例缩放 为1是缩小到固定尺寸.
php 上传图片并按比例生成指定大小图实例代码如下:
- function makethumb($srcfile,$dir,$thumbwidth,$thumbheight,$ratio=0)
- {
- //判断文件是否存在
- if (!file_exists($srcfile))return false;
- //生成新的同名文件,但目录不同
- $imgname=explode('/',$srcfile);
- $arrcount=count($imgname);
- $dstfile = $dir.$imgname[$arrcount-1];
- //缩略图大小
- $tow = $thumbwidth;
- $toh = $thumbheight;
- if($tow < 40) $tow = 40;
- if($toh < 45) $toh = 45;
- //获取图片信息
- $im ='';
- if($data = getimagesize($srcfile)) {
- if($data[2] == 1) {
- $make_max = 0;//gif不处理
- if(function_exists("imagecreatefromgif")) {
- $im = imagecreatefromgif($srcfile);
- }
- } elseif($data[2] == 2) {
- if(function_exists("imagecreatefromjpeg")) {
- $im = imagecreatefromjpeg($srcfile);
- }
- } elseif($data[2] == 3) {
- if(function_exists("imagecreatefrompng")) {
- $im = imagecreatefrompng($srcfile);
- }
- }
- }
- if(!$im) return '';
- $srcw = imagesx($im);
- $srch = imagesy($im);
- $towh = $tow/$toh;
- $srcwh = $srcw/$srch;
- if($towh <= $srcwh){
- $ftow = $tow;
- $ftoh = $ftow*($srch/$srcw);
- } else {
- $ftoh = $toh;
- $ftow = $ftoh*($srcw/$srch);
- }
- if($ratio){
- $ftow = $tow;
- $ftoh = $toh;
- }
- //缩小图片
- if($srcw > $tow || $srch > $toh || $ratio) {
- if(function_exists("imagecreatetruecolor") && function_exists("imagecopyresampled") && @$ni = imagecreatetruecolor($ftow, $ftoh)) {
- imagecopyresampled($ni, $im, 0, 0, 0, 0, $ftow, $ftoh, $srcw, $srch);
- } elseif(function_exists("imagecreate") && function_exists("imagecopyresized") && @$ni = imagecreate($ftow, $ftoh)) {
- imagecopyresized($ni, $im, 0, 0, 0, 0, $ftow, $ftoh, $srcw, $srch);
- } else {
- return '';
- }
- if(function_exists('imagejpeg')) {
- imagejpeg($ni, $dstfile);
- } elseif(function_exists('imagepng')) {
- imagepng($ni, $dstfile);
- }
- }else {
- //小于尺寸直接复制
- copy($srcfile,$dstfile);
- }
- imagedestroy($im);
- if(!file_exists($dstfile)) {
- return '';
- } else { //开源代码phpfensi.com
- return $dstfile;
- }
- }
原文链接:http://www.phpfensi.com/php/20140819/4472.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式