Heim  >  Artikel  >  Backend-Entwicklung  >  PHPThumb图片处理类示例

PHPThumb图片处理类示例

WBOY
WBOYOriginal
2016-07-25 08:53:25967Durchsuche
  1. function about_phpthumb(){

  2. require_once './js/phpthumb/ThumbLib.inc.php';
  3. //实例化类库,传入你要处理的图片的地址可以是网络地址,也可以是本地地址

  4. $thumb = PhpThumbFactory::create('./images/cake.png');
  5. //把图片等比缩小到最大宽度 100px或者最高100px,当只输入一个参数的时候,是限制最宽的尺寸。

  6. $thumb->resize(100, 100);
  7. //$thumb->show();
  8. //把图片等比缩小到原来的百分数,比如50就是原来的50%。

  9. $thumb->resizePercent(50);
  10. //$thumb->show();
  11. //截取一个175px * 175px的图片,注意这个是截取,超出的部分直接裁切掉,不是强制改变尺寸。

  12. $thumb->adaptiveResize(175, 175);
  13. //$thumb->show();
  14. //从图片的中心计算,截取200px * 100px的图片。

  15. $thumb->cropFromCenter(200, 100);
  16. //$thumb->show();
  17. //截图,前两个参数分别是需要解出的图片的右上角的坐标X,Y。 后面两个参数是需要解出的图片宽,高。

  18. $thumb->crop(100, 100, 300, 200);
  19. //$thumb->show();
  20. //把图片顺时针反转180度

  21. $thumb->rotateImageNDegrees(180);
  22. //$thumb->show();
  23. try{

  24. $thumb = PhpThumbFactory::create('./images/girl.png');
  25. }
  26. catch(Exception $e){
  27. throw $e;
  28. }
  29. $thumb->crop(100, 100, 300, 200);

  30. //$thumb->show();
  31. $thumb->cropFromCenter(200, 100);

  32. //$thumb->show();
  33. $thumb->adaptiveResize(250, 250)->createReflection(40, 80, 80, true, '#a4a4a4'); //反射(倒影),颜色是原图的边框色

  34. //$thumb->show();
  35. $thumb->rotateImage('CW');

  36. //$thumb->show();
  37. $thumb->adaptiveResize(300, 300);

  38. $thumb->save('./images/girl2.jpg','jpg'); //保存图片,第一个参数是保存后图片的name,第二个参数是图片的转换格式
  39. $thumb->resize(150,200)->cropFromCenter(100)->show(); //链锁作用

  40. }
复制代码

附,phpthumb图片处理类库的下载地址: https://github.com/masterexploder/PHPThumb



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn