当前位置:首页 > PHP教程 > php图像处理 > 列表

php 图片等比例缩放

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-19 14:38:23 浏览: 评论:0 

php 图片等比例缩放代码是一款根据用户上传的图片来指定比例大小的图片,原理很简单就是算出图片大小进等比例就行了,第二款生成小图是固定图片大小,但是如何图片小于设定的图片就填白,这是一个好方法.

php 图片等比例缩放实例代码如下:

  1. <?php 
  2. header("content-type:image/jpeg"); 
  3. $filename = hsdir.'/mljntc2p.jpg'
  4. $im = imagecreatefromjpeg($filename); 
  5. $h=imagesy($im);//获得目标图片高度 
  6. $new_img_width  = 257; 
  7. $new_img_height = 522; 
  8.  
  9. $newim = imagecreate($new_img_width$new_img_height); 
  10. $white = imagecolorallocate($newim, 255,255,255); //设置背景颜色 
  11. imagecopyresized($newim$im, 0, 0, 0, 0, $new_img_width$new_img_height$new_img_width$new_img_height); 
  12. imagefilledrectangle($newim,0,$h,$new_img_width,$new_img_height,$white); 
  13. //填充  目标图片高度作为起驶y坐标 以指定截取宽高为结束坐标 
  14. imagejpeg($newim); 
  15. imagedestroy($newim); 
  16. imagedestroy($im); 
  17. ?> 
  18. 代码二: 
  19. <?php 
  20. header("content-type:image/jpeg"); 
  21. $filename = 'myface.jpg'
  22. $im = imagecreatefromjpeg($filename); 
  23. $new_img_width  = 80; 
  24. $new_img_height = 150; 
  25. $newim = imagecreate($new_img_width$new_img_height); 
  26. $white = imagecolorallocate($newim, 255,255,255); //设置背景颜色 
  27. imagecopyresized($newim$im, 0, 0, 0, 0, $new_img_width$new_img_height$new_img_width$new_img_height); 
  28. imagejpeg($newim);//开源代码phpfensi.com 
  29. imagedestroy($newim); 
  30. imagedestroy($im); 
  31. ?> 

Tags: php 图片等比例缩放

分享到: