찾다
php教程PHP源码织梦CMS中图片处理类

代码

<?php   if(!defined(&#39;DEDEINC&#39;)) exit(&#39;dedecms&#39;);
/**
 * 图像处理类
 *
 * @version        $Id: image.class.php 1 18:10 2010年7月5日Z tianya $
 * @package        DedeCMS.Libraries
 * @copyright      Copyright (c) 2007 - 2010, DesDev, Inc.
 * @license        http://help.dedecms.com/usersguide/license.html
 * @link           http://www.dedecms.com
 */
class image
{
    var $attachinfo;
    var $targetfile;    //图片路径
    var $imagecreatefromfunc;
    var $imagefunc;
    var $attach;
    var $animatedgif;
    var $watermarkquality;
    var $watermarktext;
    var $thumbstatus;
    var $watermarkstatus;
    
    // 析构函数,兼容PHP4
    function image($targetfile, $cfg_thumb, $cfg_watermarktext, $photo_waterpos, $photo_diaphaneity, $photo_wheight, $photo_wwidth, $cfg_watermarktype, $photo_marktrans,$trueMarkimg, $attach = array())
    {
        $this->__construct($targetfile, $cfg_thumb, $cfg_watermarktext, $photo_waterpos, $photo_diaphaneity, $photo_wheight, $photo_wwidth, $cfg_watermarktype, $photo_marktrans,$trueMarkimg, $attach);
    }

    // 析构函数
    function __construct($targetfile, $cfg_thumb, $cfg_watermarktext, $photo_waterpos, $photo_diaphaneity, $photo_wheight, $photo_wwidth, $cfg_watermarktype, $photo_marktrans,$trueMarkimg, $attach = array())
    {
        $this->thumbstatus = $cfg_thumb;
        $this->watermarktext = $cfg_watermarktext;
        $this->watermarkstatus = $photo_waterpos;
        $this->watermarkquality = $photo_marktrans;
        $this->watermarkminwidth = $photo_wwidth;
        $this->watermarkminheight = $photo_wheight;
        $this->watermarktype = $cfg_watermarktype;
        $this->watermarktrans = $photo_diaphaneity;
        $this->animatedgif = 0;
        $this->targetfile = $targetfile;
        $this->attachinfo = @getimagesize($targetfile);
        $this->attach = $attach;


        switch($this->attachinfo[&#39;mime&#39;])
        {
            case &#39;image/jpeg&#39;:
                $this->imagecreatefromfunc = function_exists(&#39;imagecreatefromjpeg&#39;) ? &#39;imagecreatefromjpeg&#39; : &#39;&#39;;
                $this->imagefunc = function_exists(&#39;imagejpeg&#39;) ? &#39;imagejpeg&#39; : &#39;&#39;;
                break;
            case &#39;image/gif&#39;:
                $this->imagecreatefromfunc = function_exists(&#39;imagecreatefromgif&#39;) ? &#39;imagecreatefromgif&#39; : &#39;&#39;;
                $this->imagefunc = function_exists(&#39;imagegif&#39;) ? &#39;imagegif&#39; : &#39;&#39;;
                break;
            case &#39;image/png&#39;:
                $this->imagecreatefromfunc = function_exists(&#39;imagecreatefrompng&#39;) ? &#39;imagecreatefrompng&#39; : &#39;&#39;;
                $this->imagefunc = function_exists(&#39;imagepng&#39;) ? &#39;imagepng&#39; : &#39;&#39;;
                break;
        }//为空则匹配类型的函数不存在

        $this->attach[&#39;size&#39;] = empty($this->attach[&#39;size&#39;]) ? @filesize($targetfile) : $this->attach[&#39;size&#39;];
        if($this->attachinfo[&#39;mime&#39;] == &#39;image/gif&#39;)
        {
            $fp = fopen($targetfile, &#39;rb&#39;);
            $targetfilecontent = fread($fp, $this->attach[&#39;size&#39;]);
            fclose($fp);
            $this->animatedgif = strpos($targetfilecontent, &#39;NETSCAPE2.0&#39;) === false ? 0 : 1;
        }
    }

    /**
     *  生成缩略图
     *
     * @access    public
     * @param     int  $thumbwidth  图片宽度
     * @param     int  $thumbheight  图片高度
     * @param     int  $preview  是否预览
     * @return    void
     */
    function thumb($thumbwidth, $thumbheight, $preview = 0)
    {
        $this->thumb_gd($thumbwidth, $thumbheight, $preview);

        if($this->thumbstatus == 2 && $this->watermarkstatus)
        {
            $this->image($this->targetfile, $this->attach);
            $this->attach[&#39;size&#39;] = filesize($this->targetfile);
        }
    }

    /**
     *  图片水印
     *
     * @access    public
     * @param     int   $preview  是否预览
     * @return    void
     */
    function watermark($preview = 0)
    {
        if($this->watermarkminwidth && $this->attachinfo[0] <= $this->watermarkminwidth && $this->watermarkminheight && $this->attachinfo[1] <= $this->watermarkminheight)
        {
            return ;
        }
        $this->watermark_gd($preview);
    }

    /**
     *  使用gd生成缩略图
     *
     * @access    public
     * @param     int  $thumbwidth  图片宽度
     * @param     int  $thumbheight  图片高度
     * @param     int  $preview  是否预览
     * @return    void
     */
    function thumb_gd($thumbwidth, $thumbheight, $preview = 0)
    {

        if($this->thumbstatus && function_exists(&#39;imagecreatetruecolor&#39;) && function_exists(&#39;imagecopyresampled&#39;) && function_exists(&#39;imagejpeg&#39;))
        {
            $imagecreatefromfunc = $this->imagecreatefromfunc;
            $imagefunc = $this->thumbstatus == 1 ? &#39;imagejpeg&#39; : $this->imagefunc;
            list($imagewidth, $imageheight) = $this->attachinfo;
            if(!$this->animatedgif && ($imagewidth >= $thumbwidth || $imageheight >= $thumbheight))
            {
                $attach_photo = $imagecreatefromfunc($this->targetfile);
                $x_ratio = $thumbwidth / $imagewidth;
                $y_ratio = $thumbheight / $imageheight;
                if(($x_ratio * $imageheight) < $thumbheight)
                {
                    $thumb[&#39;height&#39;] = ceil($x_ratio * $imageheight);
                    $thumb[&#39;width&#39;] = $thumbwidth;
                }
                else
                {
                    $thumb[&#39;width&#39;] = ceil($y_ratio * $imagewidth);
                    $thumb[&#39;height&#39;] = $thumbheight;
                }
                $targetfile = !$preview ? ($this->thumbstatus == 1 ? $this->targetfile.&#39;.thumb.jpg&#39; : $this->targetfile) : &#39;./watermark_tmp.jpg&#39;;
                $thumb_photo = imagecreatetruecolor($thumb[&#39;width&#39;], $thumb[&#39;height&#39;]);
                imagecopyresampled($thumb_photo, $attach_photo, 0, 0, 0, 0, $thumb[&#39;width&#39;], $thumb[&#39;height&#39;], $imagewidth, $imageheight);
                if($this->attachinfo[&#39;mime&#39;] == &#39;image/jpeg&#39;)
                {
                    $imagefunc($thumb_photo, $targetfile, 100);
                }
                else
                {
                    $imagefunc($thumb_photo, $targetfile);
                }
                $this->attach[&#39;thumb&#39;] = $this->thumbstatus == 1 ? 1 : 0;
            }
        }
    }

    /**
     *  使用gd进行水印
     *
     * @access    public
     * @param     int   $preview  是否预览
     * @return    void
     */
    function watermark_gd($preview = 0)
    {
        if($this->watermarkstatus && function_exists(&#39;imagecopy&#39;) && function_exists(&#39;imagealphablending&#39;) && function_exists(&#39;imagecopymerge&#39;))
        {
            $imagecreatefunc = $this->imagecreatefromfunc;
            $imagefunc = $this->imagefunc;
            list($imagewidth, $imageheight) = $this->attachinfo;
            if($this->watermarktype < 2)
            {
                $watermark_file = $this->watermarktype == 1 ? DEDEDATA.&#39;/mark/mark.png&#39; : DEDEDATA.&#39;/mark/mark.gif&#39;;
                $watermarkinfo = @getimagesize($watermark_file);
                $watermark_logo = $this->watermarktype == 1 ? @imagecreatefrompng($watermark_file) : @imagecreatefromgif($watermark_file);
                if(!$watermark_logo)
                {
                    return ;
                }
                list($logowidth, $logoheight) = $watermarkinfo;
            }
            else
            {
                $box = @imagettfbbox($this->watermarktext[&#39;size&#39;], $this->watermarktext[&#39;angle&#39;], $this->watermarktext[&#39;fontpath&#39;],$this->watermarktext[&#39;text&#39;]);
                $logowidth = max($box[2], $box[4]) - min($box[0], $box[6]);
                $logoheight = max($box[1], $box[3]) - min($box[5], $box[7]);
                $ax = min($box[0], $box[6]) * -1;
                $ay = min($box[5], $box[7]) * -1;
            }
            $wmwidth = $imagewidth - $logowidth;
            $wmheight = $imageheight - $logoheight;
            if(($this->watermarktype < 2 && is_readable($watermark_file) || $this->watermarktype == 2) && $wmwidth > 10 && $wmheight > 10 && !$this->animatedgif)
            {
                switch($this->watermarkstatus)
                {
                    case 1:

                        $x = +5;
                        $y = +5;
                        break;
                    case 2:
                        $x = ($imagewidth - $logowidth) / 2;
                        $y = +5;
                        break;
                    case 3:
                        $x = $imagewidth - $logowidth - 5;
                        $y = +5;
                        break;
                    case 4:
                        $x = +5;
                        $y = ($imageheight - $logoheight) / 2;
                        break;
                    case 5:
                        $x = ($imagewidth - $logowidth) / 2;
                        $y = ($imageheight - $logoheight) / 2;
                        break;
                    case 6:
                        $x = $imagewidth - $logowidth - 5;
                        $y = ($imageheight - $logoheight) / 2;
                        break;
                    case 7:
                        $x = +5;
                        $y = $imageheight - $logoheight - 5;
                        break;
                    case 8:
                        $x = ($imagewidth - $logowidth) / 2;
                        $y = $imageheight - $logoheight - 5;
                        break;
                    case 9:
                        $x = $imagewidth - $logowidth - 5;
                        $y = $imageheight - $logoheight -5;
                        break;
                }
                $dst_photo = @imagecreatetruecolor($imagewidth, $imageheight);
                $target_photo = $imagecreatefunc($this->targetfile);
                imagecopy($dst_photo, $target_photo, 0, 0, 0, 0, $imagewidth, $imageheight);
                if($this->watermarktype == 1)
                {
                    imagecopy($dst_photo, $watermark_logo, $x, $y, 0, 0, $logowidth, $logoheight);
                }
                elseif($this->watermarktype == 2)
                {
                    if(($this->watermarktext[&#39;shadowx&#39;] || $this->watermarktext[&#39;shadowy&#39;]) && $this->watermarktext[&#39;shadowcolor&#39;])
                    {
                        $shadowcolorrgb = explode(&#39;,&#39;, $this->watermarktext[&#39;shadowcolor&#39;]);
                        $shadowcolor = imagecolorallocate($dst_photo, $shadowcolorrgb[0], $shadowcolorrgb[1], $shadowcolorrgb[2]);
                        imagettftext($dst_photo, $this->watermarktext[&#39;size&#39;], $this->watermarktext[&#39;angle&#39;],
                        $x + $ax + $this->watermarktext[&#39;shadowx&#39;], $y + $ay + $this->watermarktext[&#39;shadowy&#39;], $shadowcolor,
                        $this->watermarktext[&#39;fontpath&#39;], $this->watermarktext[&#39;text&#39;]);
                    }
                    $colorrgb = explode(&#39;,&#39;, $this->watermarktext[&#39;color&#39;]);
                    $color = imagecolorallocate($dst_photo, $colorrgb[0], $colorrgb[1], $colorrgb[2]);
                    imagettftext($dst_photo, $this->watermarktext[&#39;size&#39;], $this->watermarktext[&#39;angle&#39;],
                    $x + $ax, $y + $ay, $color, $this->watermarktext[&#39;fontpath&#39;], $this->watermarktext[&#39;text&#39;]);
                }
                else
                {
                    imagealphablending($watermark_logo, true);
                    imagecopymerge($dst_photo, $watermark_logo, $x, $y, 0, 0, $logowidth, $logoheight, $this->watermarktrans);
                }
                $targetfile = !$preview ? $this->targetfile : &#39;./watermark_tmp.jpg&#39;;
                if($this->attachinfo[&#39;mime&#39;] == &#39;image/jpeg&#39;)
                {
                    $imagefunc($dst_photo, $targetfile, $this->watermarkquality);
                }
                else
                {
                    $imagefunc($dst_photo, $targetfile);
                }
                $this->attach[&#39;size&#39;] = filesize($this->targetfile);
            }
        }
    }
}//End Class
성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

Video Face Swap

Video Face Swap

완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

뜨거운 도구

WebStorm Mac 버전

WebStorm Mac 버전

유용한 JavaScript 개발 도구

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

mPDF

mPDF

mPDF는 UTF-8로 인코딩된 HTML에서 PDF 파일을 생성할 수 있는 PHP 라이브러리입니다. 원저자인 Ian Back은 자신의 웹 사이트에서 "즉시" PDF 파일을 출력하고 다양한 언어를 처리하기 위해 mPDF를 작성했습니다. HTML2FPDF와 같은 원본 스크립트보다 유니코드 글꼴을 사용할 때 속도가 느리고 더 큰 파일을 생성하지만 CSS 스타일 등을 지원하고 많은 개선 사항이 있습니다. RTL(아랍어, 히브리어), CJK(중국어, 일본어, 한국어)를 포함한 거의 모든 언어를 지원합니다. 중첩된 블록 수준 요소(예: P, DIV)를 지원합니다.

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

PhpStorm 맥 버전

PhpStorm 맥 버전

최신(2018.2.1) 전문 PHP 통합 개발 도구