>  기사  >  CMS 튜토리얼  >  PHPCMS가 썸네일 문제를 어떻게 해결하는지 명확하지 않습니다.

PHPCMS가 썸네일 문제를 어떻게 해결하는지 명확하지 않습니다.

Guanhui
Guanhui원래의
2020-05-20 14:08:212126검색

PHPCMS가 썸네일 문제를 어떻게 해결하는지 명확하지 않습니다.

PHPCMS는 불분명한 썸네일 문제를 어떻게 해결합니까?

먼저 phpcms 아래의 libs에서 클래스 디렉토리를 찾아 연 다음 "image.class.php" 파일을 찾아 엽니다. "$imagefun()" 함수를 호출하고 세 번째 매개변수를 90으로 전달합니다.

이 함수

function thumb($image, $filename = '', $maxwidth = 200, $maxheight = 200, $suffix='', $autocut = 0, $ftp = 0) {
        if(!$this->thumb_enable || !$this->check($image)) return false;
        $info  = image::info($image);
        if($info === false) return false;
                $srcwidth  = $info['width'];
                $srcheight = $info['height'];
                $pathinfo = pathinfo($image);
                $type =  $pathinfo['extension'];
                if(!$type) $type = $info['type'];
                $type = strtolower($type);
                unset($info);

                $creat_arr = $this->getpercent($srcwidth,$srcheight,$maxwidth,$maxheight);
                $createwidth = $width = $creat_arr['w'];
                $createheight = $height = $creat_arr['h'];

                $psrc_x = $psrc_y = 0;
                if($autocut && $maxwidth > 0 && $maxheight > 0) {
                        if($maxwidth/$maxheight<$srcwidth/$srcheight && $maxheight>=$height) {
                                $width = $maxheight/$height*$width;
                                $height = $maxheight;
                        }elseif($maxwidth/$maxheight>$srcwidth/$srcheight && $maxwidth>=$width) {
                                $height = $maxwidth/$width*$height;
                                $width = $maxwidth;
                        }
                        $createwidth = $maxwidth;
                        $createheight = $maxheight;
                }
                $createfun = &#39;imagecreatefrom&#39;.($type==&#39;jpg&#39; ? &#39;jpeg&#39; : $type);
                $srcimg = $createfun($image);
                if($type != &#39;gif&#39; && function_exists(&#39;imagecreatetruecolor&#39;))
                        $thumbimg = imagecreatetruecolor($createwidth, $createheight); 
                else
                        $thumbimg = imagecreate($width, $height); 

                if(function_exists(&#39;imagecopyresampled&#39;))
                        imagecopyresampled($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $width, $height, $srcwidth, $srcheight); 
                else
                        imagecopyresized($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $width, $height,  $srcwidth, $srcheight); 
                if($type==&#39;gif&#39; || $type==&#39;png&#39;) {
                        $background_color  =  imagecolorallocate($thumbimg,  0, 255, 0);  //  指派一个绿色  
                        imagecolortransparent($thumbimg, $background_color);  //  设置为透明色,若注释掉该行则输出绿色的图 
                }
                if($type==&#39;jpg&#39; || $type==&#39;jpeg&#39;) imageinterlace($thumbimg, $this->interlace);
                $imagefun = &#39;image&#39;.($type==&#39;jpg&#39; ? &#39;jpeg&#39; : $type);
                if(empty($filename)) $filename  = substr($image, 0, strrpos($image, &#39;.&#39;)).$suffix.&#39;.&#39;.$type;
                $imagefun($thumbimg, $filename);
                imagedestroy($thumbimg);
                imagedestroy($srcimg);
                if($ftp) {
                        @unlink($image);
                }
                return $filename;
    }

를 검색한 다음

if($type==&#39;jpg&#39; || $type==&#39;jpeg&#39;) imageinterlace($thumbimg, $this->interlace);
$imagefun = &#39;image&#39;.($type==&#39;jpg&#39; ? &#39;jpeg&#39; : $type);
if(empty($filename)) $filename  = substr($image, 0, strrpos($image, &#39;.&#39;)).$suffix.&#39;.&#39;.$type;
$imagefun($thumbimg, $filename);
imagedestroy($thumbimg);
imagedestroy($srcimg);

를 찾아

if($type==&#39;jpg&#39; || $type==&#39;jpeg&#39;) imageinterlace($thumbimg, $this->interlace);
$imagefun = &#39;image&#39;.($type==&#39;jpg&#39; ? &#39;jpeg&#39; : $type);
if(empty($filename)) $filename  = substr($image, 0, strrpos($image, &#39;.&#39;)).$suffix.&#39;.&#39;.$type;
$imagefun($thumbimg, $filename, 90);
imagedestroy($thumbimg);
imagedestroy($srcimg);

로 변경하여 문제를 해결하세요

추천 튜토리얼: "PHP 튜토리얼"

위 내용은 PHPCMS가 썸네일 문제를 어떻게 해결하는지 명확하지 않습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.