php调用imagick生成缩略图

phpshell

<?php

         function publish_slide($slide_id,$publish){

                 $slide_info=$this->slide_info($slide_id);

                 $pic_url=$slide_info["pic_url"];
                 $strpos=strrpos($pic_url,"/");
                 $filename=substr($pic_url,$strpos+1);
                 $newname="358x282_".$filename;
                 $path="/var/www/html/slidepic";
                 $pic_url=$path."/".$filename;
                 $new_pic=$path."/".$newname;
                 if($publish==1){
                         if(!file_exists($new_pic)){
                                 exec("convert -resize 358x282! $pic_url $new_pic",$out,$status);
                                 //var_dump($out);
                         }else{
                                 //echo "exists";
                        }
                }

         }

?>

    A+
发布日期:2021年07月15日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: