php 缩略图实现函数代码
2015-01-24信息快讯网
php 生成缩略图函数非常简单,只是调入了几个GD的系统函数,不过却很实用
array getimagesize ( string $filename [, array &$imageinfo ] ) 取得图像大小resource imagecreatetruecolor ( int $x_size , int $y_size ) 新建一个真彩色图像
resource imagecreatefromjpeg ( string $filename ) 从 JPEG 文件或 URL 新建一图像
bool imagecopyresized ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h ) 拷贝部分图像并调整大小
bool imagejpeg ( resource $image [, string $filename [, int $quality ]] ) 以 JPEG 格式将图像输出到浏览器或文件
<?php /* Created by <A href="http://www.cnphp.info">http://www.cnphp.info</A> */ // 文件及缩放尺寸 //$imgfile = 'smp.jpg'; //$percent = 0.2; header('Content-type: image/jpeg'); list($width, $height) = getimagesize($imgfile); $newwidth = $width * $percent; $newheight = $height * $percent; $thumb = ImageCreateTrueColor($newwidth,$newheight); $source = imagecreatefromjpeg($imgfile); imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); imagejpeg($thumb); ?>
PHP提示Notice: Undefined variable的解决办法
php如何调用webservice应用介绍
PHP读取PDF内容配合Xpdf的使用
PHP得到mssql的存储过程的输出参数功能实现
php实现文件下载更能介绍
php中的注释、变量、数组、常量、函数应用介绍
thinkphp3.0 模板中函数的使用
php eval函数用法 PHP中eval()函数小技巧
php eval函数用法总结
PHP去掉从word直接粘贴过来的没有用格式的函数
PHP array操作10个小技巧分享
php中随机显示图片的函数代码
使用php shell命令合并图片的代码
php whois查询API制作方法
PHP字符编码问题之GB2312 VS UTF-8解决方法
PHP读取网页文件内容的实现代码(fopen,curl等)
php学习笔记 数组的常用函数
PHP中的函数嵌套层数限制分析
php学习笔记之 函数声明(二)
php学习笔记之 函数声明