缩略图原理:将原图打开,然后放到另外一个较小的图片资源中,最后进行保存即可。
<?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);
?>
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来自喵喵知识园 !
评论
评论