欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php缩放图片代码

程序员文章站 2022-06-09 14:29:22
...
  1. // 指定文件路径和缩放比例
  2. $filename = 'test.jpg';
  3. $percent = 0.5;
  4. // 指定头文件Content typezhi值
  5. header('Content-type: image/jpeg');
  6. // 获取图片的宽高
  7. list($width, $height) = getimagesize($filename);
  8. $newwidth = $width * $percent;
  9. $newheight = $height * $percent;
  10. // 创建一个图片。接收参数分别为宽高,返回生成的资源句柄
  11. $thumb = imagecreatetruecolor($newwidth, $newheight);
  12. //获取源文件资源句柄。接收参数为图片路径,返回句柄
  13. $source = imagecreatefromjpeg($filename);
  14. // 将源文件剪切全部域并缩小放到目标图片上。前两个为资源句柄
  15. imagecopyresampled($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
  16. // 输出给浏览器
  17. imagejpeg($thumb);
  18. ?>
复制代码


php
相关标签: php缩放图片代码