- 浏览: 223266 次
- 性别:
- 来自: 西安
文章分类
- 全部博客 (143)
- java (13)
- mongodb (15)
- linux (31)
- mysql (2)
- cache (1)
- Android (3)
- lucene (2)
- javascript (9)
- php (13)
- 人生 (2)
- solr (7)
- 跨域iframe (1)
- 统计学 (1)
- redis (0)
- amazon aws (2)
- 国内比较便宜的vps (1)
- nginx (5)
- sns api应用 (1)
- api (1)
- postfix (1)
- nodejs (1)
- gitlab (1)
- myeclipse (1)
- matlab (3)
- ubuntu (2)
- stardict (1)
- cdn (1)
- lajp (1)
- workerman (1)
- tensorflow (1)
- 协同推荐算法 (3)
- html5 (1)
- extensions (3)
- Rome (1)
- 正则 (1)
- EBS (1)
- python (5)
- https (1)
- iptables (1)
- facebook (0)
- ImageMagick (0)
- elasticsearch (1)
- Flask (1)
- wordpress (0)
- kubernetes (0)
最新评论
-
三尺寒冰:
怎么实现排序的?分析一下
php mongodb 实现group 并按照某字段排序
1.创建iamge处理类
<?php
include_once 'ImageResize.class.php';
date_default_timezone_set('PRC');
class Image {
protected $nameinfo;
protected $InputImageFileExtension;
public static function getInstance() {
static $instance;
if (!isset ($instance)) {
$class = __CLASS__;
$instance = new $class ();
}
return $instance;
}
function uploadresize($fileparam, $imageparam) {
$newW = $imageparam['imageW'];
$newH = $imageparam['imageH'];
$this->nameinfo = explode('.',$fileparam['name']);
//取得图片格式
$this->InputImageFileExtension = $this->nameinfo[1];
//判断是不是给了新的文件名
if(empty($imageparam['imagename'])){
$outputFileName = $this->nameinfo[0];
}else{
$outputFileName = $imageparam['imagename'];
}
//判断路径是否正确
if (!file_exists($imageparam['imagepath'])) {
if(!mkdir($imageparam['imagepath'])){
throw new Exception('image path is wrong');
exit;
}
}
$file_src = $imageparam['imagepath']."/". $outputFileName . "_." . $this->InputImageFileExtension;
// temporary safe image storage
if(file_exists($file_src)){
unlink($file_src);
}
move_uploaded_file($fileparam['tmp_name'], $file_src);
// set image size
$imageResize = new ImageResize();
$imageResize->my_image_resize($file_src,$file_src,$newW,$newH,$this->InputImageFileExtension);
}
}
?>
2.设置图片大小处理类:
<?php
class ImageResize {
/*
* 说明:函数功能是把一个图像裁剪为任意大小的图像,图像不变形
* 参数说明:输入 需要处理图片的 文件名,生成新图片的保存文件名,生成新图片的宽,生成新图片的高
* written by smallchicken
* time 2008-12-18
*/
// 获得任意大小图像,不足地方拉伸,不产生变形,不留下空白
function my_image_resize($src_file, $dst_file, $new_width, $new_height, $type) {
if ($new_width < 1 || $new_height < 1) {
echo "params width or height error !";
exit ();
}
if (! file_exists ( $src_file )) {
echo $src_file . " is not exists !";
exit ();
}
// 图像类型
$support_type = array ("jpg", "png", "gif" );
if (! in_array ( $type, $support_type, true )) {
echo "this type of image does not support! only support jpg , gif or png";
exit ();
}
//Load image
switch ($type) {
case "jpg" :
$src_img = imagecreatefromjpeg ( $src_file );
break;
case "png" :
$src_img = imagecreatefrompng ( $src_file );
break;
case "gif" :
$src_img = imagecreatefromgif ( $src_file );
break;
default :
echo "Load image error!";
exit ();
}
$w = imagesx ( $src_img );
$h = imagesy ( $src_img );
////
if($w < $new_width && $h < $new_height){
// 定义一个中间的临时图像,该图像的宽高比 正好满足目标要求
$inter_w = $w;
$inter_h = $h;
$inter_img = imagecreatetruecolor ( $inter_w, $inter_h );
imagecopy ( $inter_img, $src_img, 0, 0, 0, 0, $inter_w, $inter_h );
// 生成一个以最大边长度为大小的是目标图像$ratio比例的临时图像
// 定义一个新的图像
$new_img = imagecreatetruecolor ( $inter_w, $inter_h );
imagecopyresampled ( $new_img, $inter_img, 0, 0, 0, 0, $inter_w, $inter_w, $inter_h, $inter_h );
switch ($type) {
case "jpg" :
imagejpeg ( $new_img, $dst_file, 100 ); // 存储图像
break;
case "png" :
imagepng ( $new_img, $dst_file, 100 );
break;
case "gif" :
imagegif ( $new_img, $dst_file, 100 );
break;
default :
break;
}
die();
}
////
$ratio_w = 1.0 * $new_width / $w;
$ratio_h = 1.0 * $new_height / $h;
$ratio = 1.0;
// 生成的图像的高宽比原来的都小,或都大 ,原则是 取大比例放大,取大比例缩小(缩小的比例就比较小了)
if (($ratio_w < 1 && $ratio_h < 1) || ($ratio_w > 1 && $ratio_h > 1)) {
if ($ratio_w < $ratio_h) {
$ratio = $ratio_h; // 情况一,宽度的比例比高度方向的小,按照高度的比例标准来裁剪或放大
} else {
$ratio = $ratio_w;
}
// 定义一个中间的临时图像,该图像的宽高比 正好满足目标要求
$inter_w = ( int ) ($new_width / $ratio);
$inter_h = ( int ) ($new_height / $ratio);
$inter_img = imagecreatetruecolor ( $inter_w, $inter_h );
imagecopy ( $inter_img, $src_img, 0, 0, 0, 0, $inter_w, $inter_h );
// 生成一个以最大边长度为大小的是目标图像$ratio比例的临时图像
// 定义一个新的图像
$new_img = imagecreatetruecolor ( $new_width, $new_height );
imagecopyresampled ( $new_img, $inter_img, 0, 0, 0, 0, $new_width, $new_height, $inter_w, $inter_h );
switch ($type) {
case "jpg" :
imagejpeg ( $new_img, $dst_file, 100 ); // 存储图像
break;
case "png" :
imagepng ( $new_img, $dst_file, 100 );
break;
case "gif" :
imagegif ( $new_img, $dst_file, 100 );
break;
default :
break;
}
} else {
// end if 1
// 2 目标图像 的一个边大于原图,一个边小于原图 ,先放大平普图像,然后裁剪
// =if( ($ratio_w < 1 && $ratio_h > 1) || ($ratio_w >1 && $ratio_h <1) )
$ratio = $ratio_h > $ratio_w ? $ratio_h : $ratio_w; //取比例大的那个值
// 定义一个中间的大图像,该图像的高或宽和目标图像相等,然后对原图放大
$inter_w = ( int ) ($w * $ratio);
$inter_h = ( int ) ($h * $ratio);
$inter_img = imagecreatetruecolor ( $inter_w, $inter_h );
//将原图缩放比例后裁剪
imagecopyresampled ( $inter_img, $src_img, 0, 0, 0, 0, $inter_w, $inter_h, $w, $h );
// 定义一个新的图像
$new_img = imagecreatetruecolor ( $new_width, $new_height );
imagecopy ( $new_img, $inter_img, 0, 0, 0, 0, $new_width, $new_height );
switch ($type) {
case "jpg" :
imagejpeg ( $new_img, $dst_file, 100 ); // 存储图像
break;
case "png" :
imagepng ( $new_img, $dst_file, 100 );
break;
case "gif" :
imagegif ( $new_img, $dst_file, 100 );
break;
default :
break;
}
} // if3
} // end function
}
?>
3.图片固定大小及路径设置
<?php
include "../../tools/Image/Image.class.php";
$array = $_FILES['photo'];
//等比例缩放参数
$resizeParam = array (
'imagepath' => 'd:/xampp/www/', //图片存储路径
'imageW' => 200, //图片存储路径
'imageH' => 200 //图片存储路径
);
if (!empty ($array)) {
Image :: getInstance()->uploadresize($array, $resizeParam);
}
?>
4.简单form表单
<html>
<body>
<form action='ImageTools.php' method='post' name='form' enctype="multipart/form-data">
<input type='file' name='photo'>
<input type=submit value='submit'>
</form>
</body>
</html>
over
相关参考:
http://blog.51yip.com/php/645.html
<?php
include_once 'ImageResize.class.php';
date_default_timezone_set('PRC');
class Image {
protected $nameinfo;
protected $InputImageFileExtension;
public static function getInstance() {
static $instance;
if (!isset ($instance)) {
$class = __CLASS__;
$instance = new $class ();
}
return $instance;
}
function uploadresize($fileparam, $imageparam) {
$newW = $imageparam['imageW'];
$newH = $imageparam['imageH'];
$this->nameinfo = explode('.',$fileparam['name']);
//取得图片格式
$this->InputImageFileExtension = $this->nameinfo[1];
//判断是不是给了新的文件名
if(empty($imageparam['imagename'])){
$outputFileName = $this->nameinfo[0];
}else{
$outputFileName = $imageparam['imagename'];
}
//判断路径是否正确
if (!file_exists($imageparam['imagepath'])) {
if(!mkdir($imageparam['imagepath'])){
throw new Exception('image path is wrong');
exit;
}
}
$file_src = $imageparam['imagepath']."/". $outputFileName . "_." . $this->InputImageFileExtension;
// temporary safe image storage
if(file_exists($file_src)){
unlink($file_src);
}
move_uploaded_file($fileparam['tmp_name'], $file_src);
// set image size
$imageResize = new ImageResize();
$imageResize->my_image_resize($file_src,$file_src,$newW,$newH,$this->InputImageFileExtension);
}
}
?>
2.设置图片大小处理类:
<?php
class ImageResize {
/*
* 说明:函数功能是把一个图像裁剪为任意大小的图像,图像不变形
* 参数说明:输入 需要处理图片的 文件名,生成新图片的保存文件名,生成新图片的宽,生成新图片的高
* written by smallchicken
* time 2008-12-18
*/
// 获得任意大小图像,不足地方拉伸,不产生变形,不留下空白
function my_image_resize($src_file, $dst_file, $new_width, $new_height, $type) {
if ($new_width < 1 || $new_height < 1) {
echo "params width or height error !";
exit ();
}
if (! file_exists ( $src_file )) {
echo $src_file . " is not exists !";
exit ();
}
// 图像类型
$support_type = array ("jpg", "png", "gif" );
if (! in_array ( $type, $support_type, true )) {
echo "this type of image does not support! only support jpg , gif or png";
exit ();
}
//Load image
switch ($type) {
case "jpg" :
$src_img = imagecreatefromjpeg ( $src_file );
break;
case "png" :
$src_img = imagecreatefrompng ( $src_file );
break;
case "gif" :
$src_img = imagecreatefromgif ( $src_file );
break;
default :
echo "Load image error!";
exit ();
}
$w = imagesx ( $src_img );
$h = imagesy ( $src_img );
////
if($w < $new_width && $h < $new_height){
// 定义一个中间的临时图像,该图像的宽高比 正好满足目标要求
$inter_w = $w;
$inter_h = $h;
$inter_img = imagecreatetruecolor ( $inter_w, $inter_h );
imagecopy ( $inter_img, $src_img, 0, 0, 0, 0, $inter_w, $inter_h );
// 生成一个以最大边长度为大小的是目标图像$ratio比例的临时图像
// 定义一个新的图像
$new_img = imagecreatetruecolor ( $inter_w, $inter_h );
imagecopyresampled ( $new_img, $inter_img, 0, 0, 0, 0, $inter_w, $inter_w, $inter_h, $inter_h );
switch ($type) {
case "jpg" :
imagejpeg ( $new_img, $dst_file, 100 ); // 存储图像
break;
case "png" :
imagepng ( $new_img, $dst_file, 100 );
break;
case "gif" :
imagegif ( $new_img, $dst_file, 100 );
break;
default :
break;
}
die();
}
////
$ratio_w = 1.0 * $new_width / $w;
$ratio_h = 1.0 * $new_height / $h;
$ratio = 1.0;
// 生成的图像的高宽比原来的都小,或都大 ,原则是 取大比例放大,取大比例缩小(缩小的比例就比较小了)
if (($ratio_w < 1 && $ratio_h < 1) || ($ratio_w > 1 && $ratio_h > 1)) {
if ($ratio_w < $ratio_h) {
$ratio = $ratio_h; // 情况一,宽度的比例比高度方向的小,按照高度的比例标准来裁剪或放大
} else {
$ratio = $ratio_w;
}
// 定义一个中间的临时图像,该图像的宽高比 正好满足目标要求
$inter_w = ( int ) ($new_width / $ratio);
$inter_h = ( int ) ($new_height / $ratio);
$inter_img = imagecreatetruecolor ( $inter_w, $inter_h );
imagecopy ( $inter_img, $src_img, 0, 0, 0, 0, $inter_w, $inter_h );
// 生成一个以最大边长度为大小的是目标图像$ratio比例的临时图像
// 定义一个新的图像
$new_img = imagecreatetruecolor ( $new_width, $new_height );
imagecopyresampled ( $new_img, $inter_img, 0, 0, 0, 0, $new_width, $new_height, $inter_w, $inter_h );
switch ($type) {
case "jpg" :
imagejpeg ( $new_img, $dst_file, 100 ); // 存储图像
break;
case "png" :
imagepng ( $new_img, $dst_file, 100 );
break;
case "gif" :
imagegif ( $new_img, $dst_file, 100 );
break;
default :
break;
}
} else {
// end if 1
// 2 目标图像 的一个边大于原图,一个边小于原图 ,先放大平普图像,然后裁剪
// =if( ($ratio_w < 1 && $ratio_h > 1) || ($ratio_w >1 && $ratio_h <1) )
$ratio = $ratio_h > $ratio_w ? $ratio_h : $ratio_w; //取比例大的那个值
// 定义一个中间的大图像,该图像的高或宽和目标图像相等,然后对原图放大
$inter_w = ( int ) ($w * $ratio);
$inter_h = ( int ) ($h * $ratio);
$inter_img = imagecreatetruecolor ( $inter_w, $inter_h );
//将原图缩放比例后裁剪
imagecopyresampled ( $inter_img, $src_img, 0, 0, 0, 0, $inter_w, $inter_h, $w, $h );
// 定义一个新的图像
$new_img = imagecreatetruecolor ( $new_width, $new_height );
imagecopy ( $new_img, $inter_img, 0, 0, 0, 0, $new_width, $new_height );
switch ($type) {
case "jpg" :
imagejpeg ( $new_img, $dst_file, 100 ); // 存储图像
break;
case "png" :
imagepng ( $new_img, $dst_file, 100 );
break;
case "gif" :
imagegif ( $new_img, $dst_file, 100 );
break;
default :
break;
}
} // if3
} // end function
}
?>
3.图片固定大小及路径设置
<?php
include "../../tools/Image/Image.class.php";
$array = $_FILES['photo'];
//等比例缩放参数
$resizeParam = array (
'imagepath' => 'd:/xampp/www/', //图片存储路径
'imageW' => 200, //图片存储路径
'imageH' => 200 //图片存储路径
);
if (!empty ($array)) {
Image :: getInstance()->uploadresize($array, $resizeParam);
}
?>
4.简单form表单
<html>
<body>
<form action='ImageTools.php' method='post' name='form' enctype="multipart/form-data">
<input type='file' name='photo'>
<input type=submit value='submit'>
</form>
</body>
</html>
over
相关参考:
http://blog.51yip.com/php/645.html
发表评论
-
workerman PHP socket 服务器框架
2015-12-17 14:25 853http://www.workerman.net/ wor ... -
CentOS6.5 下编译安装php-5.6.3.tar.gz
2015-09-15 15:54 2135一、安装相关依赖库 yum -y install gc ... -
php 添加mongodb扩展
2014-04-30 17:03 793PHP MongoDB 扩展安装 [root@a5139 ~] ... -
nginx添加php basic验证
2014-07-16 10:37 649几种方式: 1.命令 http://www.centos.b ... -
使用PHP 给网站 生成快照图片和缩略图
2012-06-07 10:21 2011使用PHP 给网站 生成快 ... -
HTML5 修改浏览器url而不刷新页面
2012-04-05 17:54 2296<?php if(!isset($_REQUEST['p ... -
使用Imagick来”resize” 和 “crop” GIF动画
2012-03-23 19:32 1562http://www.cnblogs.com/analyzer ... -
php bmp图片格式转化png
2012-03-21 13:38 1703有gd库不支持bmp格式的图片缩放,裁剪,所以可以通过改变图片 ... -
crontab执行不了php的解决方法
2012-03-12 18:26 3611用crontab跑php程序时,如 ... -
php mongodb 实现group 并按照某字段排序
2012-02-27 17:13 7753require_once ('../Config.class. ... -
php 国际化
2012-02-16 18:47 1438PHP的gettext用法 gettext ... -
php报错启动配置
2011-10-13 13:32 2219PHP 报错信息 2008年11月22 ...
相关推荐
通过本类我们可以灵活地控制生成图片的尺寸,避免了以往一些固定尺寸类的局限性。特别地,这个类支持了在目标图片上添加logo和标签的功能,同时也支持了图片的交错显示(interlace),这在网页加载图片时可以先显示...
根据接收到的裁剪参数,我们可以截取原始图片的指定部分,并保存为新的图像文件。如果需要,还可以调整裁剪后的图片尺寸、质量等。 ### 图片裁切工具 项目中可能包含一个基于jQuery和PHP的图片裁切插件,这类插件...
字符串大小模式匹配.php 字符串大小模式匹配 日期字符串模式匹配.php 日期字符串模式匹配 模式替换.php 模式替换 模式分割.php 模式分割 正则表达式匹配.php 正则表达式匹配 其他的正则表达式匹配.php 其他的...
在处理GBK编码的文档时,如果我们需要从文档的某个特定位置开始截取固定长度的字符,将面临因编码导致的多字节字符问题。本文将详细介绍PHP语言实现GBK文档在指定位置开始截取n个字符的方法。 GBK编码是一种双字节...
书名:《PHP开发实战1200例(第I卷)》(清华大学出版社.潘凯华.刘中华) PDF格式扫描版,全书分为5篇15章,共899页。2011年1月出版。 全书压缩打包成2部分,这是第1部分。 注:本系列图书的第I、II卷再版时均相应改名...
书名:《PHP开发实战1200例(第I卷)》(清华大学出版社.潘凯华.刘中华) PDF格式扫描版,全书分为5篇15章,共899页。2011年1月出版。 全书压缩打包成2部分,这是第2部分。 注:本系列图书的第I、II卷再版时均相应改名...
例如,`mcrypt_encrypt`用于加密数据,而`mcrypt_decrypt`则用于解密数据,`mcrypt_get_iv_size`用来获取初始化向量(IV)的大小,`mcrypt_create_iv`则用于生成随机的初始化向量,以确保每次加密过程的独特性,增加...
很COOL的可变大小的层插件.mxp 横向数据重复的插件.mxp 换行显示搜索高亮度文本插件.mxp 记录集跳转菜单插件.mxp 检查新元素插件.mxp 检验控制组件插件.mxp 简约版高级分页插件.mxp 截取字符长度.mxp 酷酷的表格边框...
它创建一个固定大小的图像,定义了背景色、前景色和干扰像素,然后将验证码文本写入图像,并添加随机像素以增加识别难度。最后,通过设置HTTP头并输出PNG数据流,将图像发送到浏览器。需要注意的是,这个函数应该...
此外,除了`array_slice()`,PHP还提供了其他处理数组的函数,如`array_chunk()`,它可以直接将数组分割成固定大小的子数组,无需循环。`array_chunk()`的语法如下: ```php array_chunk(array, chunk_size, ...
6. **字符串处理**: PHP提供了丰富的字符串操作函数,如`strlen()`计算长度,`substr()`截取子串,`strpos()`查找子串位置等。 7. **文件操作**: PHP可以读写文件,使用`fopen()`、`fwrite()`、`fclose()`等函数...
2. 按固定尺寸缩放:拉伸或压缩图片至指定尺寸,可能导致图像失真。 3. 高质量缩放:使用插值算法,提高缩放后的图像质量。 在前端,可以利用CSS3的object-fit属性控制缩略图的显示方式。在后端,图像处理库如...
文章中有图片自动截取,支持外链图片,无图片显示随机缩略图。如指定显示某张图片,需添加自定义栏目: 焦点幻灯:show,图片大小:400×248 正文:thumbnail,图片大小:140×100 顶部热点图片:image,图片大小...
这里所展示的实例通过计算文件长度并以固定大小(例如5000字节)为一页来实现分页。 3. 字符串截取函数:实现分页的一个核心函数是msubstr(),这个函数通过参数指定的起始位置和长度来截取字符串。该函数在处理字符...
- `array_chunk()`:将数组分割成多个固定大小的子数组。 - `explode()`:使用分隔符将字符串分割成数组。 - `implode()`:与`explode`相反,它将数组组合成一个字符串,使用指定的连接符。 - `array_unique()`:...
- **详细内容**:可以通过条件语句判断数值的大小来决定是否添加复数形式,例如使用单数或复数形式的单词。 **2.12 计算三角函数** - **知识点概述**:讲解了如何使用 `sin()`, `cos()`, `tan()` 等函数计算三角函...
制作节目时可任意拉伸拖放视频、 图片、 FLASH、PPT的大小和区域。设置跑马灯字幕的字号 、字色、背景色、支持字幕向左、右、上、下滚动;系统自带数字日历时钟模块、天气预报模块、节目 模板库,支持自行...
增加固定图像的背景色可以透明。 splashimage [--offset=[type]=[x]=[y]] FILE 类型[type]:bit 7: 透明背景 2016-02-14(yaya) setmenu 函数增加菜单项目背景短/满参数(默认短) 2016-01-19(yaya) splash...