Home  >  Article  >  php教程  >  一个简单的原创缩略图生成类

一个简单的原创缩略图生成类

WBOY
WBOYOriginal
2016-06-07 11:44:441281browse

也算是自己对GD扩展的一个熟悉过程吧,之前一直没有认真学习过GD图像处理。
这个类很简单,会根据实际图像的比例,自动调整指定的宽高,也就是按比例缩放。

<?php <br /> //实例化缩略图类<br> $newimage=new ImageResize();<br> //将当前目录下的1.jpg生成缩略图并保存到1_lit.jpg,指定的宽度高度分别是644和373像素<br> $newimage->resize("1.jpg","1_lit.jpg",644,373);<br> //获取最后一条错误信息,如果生成成功则输出'success'<br> echo $newimage->GetLastError();<br> ?>

附件 ImageResize.class.zip ( 1.5 KB 下载:74 次 )

AD:真正免费,域名+虚机+企业邮箱=0元

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn