缩略图原理:将原图打开,然后放到另外一个较小的图片资源中,最后进行保存即可。

<?php
    $src_image='E:\LearningSoftware\phpStudy\phpstudy_pro\WWW\PHP\phtotshop\giao.png';
    $src=imagecreatefrompng($src_image);
    //制作缩略图资源
    $dst=imagecreatetruecolor(100,100);
    //采样复制
    $res=imagecopyresampled($dst,$src,0,0,0,0,100,100,imagesx($src),imagesy($src));
    //保存缩略图
    header('Content-type:image/png');
    imagepng($dst);
    //销毁资源’
    imagedestroy($src);
    imagedestroy($dst);


?>