php创建缩略图程序
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-20 09:48:20 浏览: 评论:0
- function Thumb_IM($thumbwidth, $thumbheight, $preview = 0) {
- global $thumbstatus, $imageimpath, $thumbquality;
- if($thumbstatus) {
- list($img_w, $img_h) = $this->attachinfo;
- $targetfile = !$preview ? ($thumbstatus == 1 || $thumbstatus == 3 ? $this->targetfile.'.thumb.jpg' : $this->targetfile) : DISCUZ_ROOT.'./forumdata/watermark_temp.jpg';
- if(!$this->animatedgif && ($img_w >= $thumbwidth || $img_h >= $thumbheight)) {
- if($thumbstatus != 3) {
- $exec_str = $imageimpath.'/convert -quality '.intval($thumbquality).' -geometry '.$thumbwidth.'x'.$thumbheight.' '.$this->targetfile.' '.$targetfile;
- @exec($exec_str, $output, $return);
- if(emptyempty($return) && emptyempty($output)) {
- $this->attach['thumb'] = $thumbstatus == 1 ? 1 : 0;
- }
- } else {
- $imgratio = $img_w / $img_h;
- $thumbratio = $thumbwidth / $thumbheight;
- if($imgratio >= 1 && $imgratio >= $thumbratio || $imgratio < 1 && $imgratio > $thumbratio) {
- $cuty = $img_h;
- $cutx = $cuty * $thumbratio;
- } elseif($imgratio >= 1 && $imgratio <= $thumbratio || $imgratio < 1 && $imgratio < $thumbratio) {
- $cutx = $img_w;
- $cuty = $cutx / $thumbratio;
- }
- $exec_str = $imageimpath.'/convert -crop '.$cutx.'x'.$cuty.'+0+0 '.$this->targetfile.' '.$targetfile;
- @exec($exec_str, $output, $return);
- $exec_str = $imageimpath.'/convert -quality '.intval($thumbquality).' -geometry '.$thumbwidth.'x'.$thumbheight.' '.$targetfile.' '.$targetfile;
- @exec($exec_str, $output, $return);
- if(emptyempty($return) && emptyempty($output)) {
- $this->attach['thumb'] = $thumbstatus == 1 || $thumbstatus == 3 ? 1 : 0;
- }//开源代码phpfensi.com
- }
- }
- }
- }
Tags: php创建缩略图 php创建图片
- 上一篇:php生成曲线图程序
- 下一篇:php给图片加水印函数
相关文章
- ·php创建高清缩略图详细使用方法(2014-08-19)
- ·php创建不失真高清图片实现代码(2014-08-19)
- ·php简单创建图片实例(2014-08-19)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)