当前位置:Gxlcms > PHP教程 > php中如何改变图片大小的实例分析

php中如何改变图片大小的实例分析

时间:2021-07-01 10:21:17 帮助过:6人阅读

改变图片的尺寸是一个很常见的功能需求,下面开始研究下关于PHP改变图片尺寸的方法。

先介绍一个自己写的函数。

  1. <?php
  2. $imgsrc = "http://www.nowamagic.net/images/3.jpg";
  3. $width = 780;
  4. $height = 420;
  5. resizejpg($imgsrc,$imgdst,$width,$height);
  6. function resizejpg($imgsrc,$imgdst,$imgwidth,$imgheight)
  7. {
  8. //$imgsrc jpg格式图像路径 $imgdst jpg格式图像保存文件名 $imgwidth要改变的宽度 $imgheight要改变的高度
  9. //取得图片的宽度,高度值
  10. $arr = getimagesize($imgsrc);
  11. header("Content-type: image/jpg");
  12. $imgWidth = $imgwidth;
  13. $imgHeight = $imgheight;
  14. // Create image and define colors
  15. $imgsrc = imagecreatefromjpeg($imgsrc);
  16. $image = imagecreatetruecolor($imgWidth, $imgHeight); //创建一个彩色的底图
  17. imagecopyresampled($image, $imgsrc, 0, 0, 0, 0,$imgWidth,$imgHeight,$arr[0], $arr[1]);
  18. imagepng($image);
  19. imagedestroy($image);
  20. }
  21. ?>

imagecopyresampled
imagecopyresampled -- 重采样拷贝部分图像并调整大小。
int imagecopyresampled ( resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
imagecopyresampled() 将一幅图像中的一块正方形区域拷贝到另一个图像中,平滑地插入像素值,因此,尤其是,减小了图像的大小而仍然保持了极大的清晰度。dst_im 和 src_im 分别是目标图像和源图像的标识符。如果源和目标的宽度和高度不同,则会进行相应的图像收缩和拉伸。坐标指的是左上角。本函数可用来在同一幅图内部拷贝(如果 dst_im 和 src_im 相同的话)区域,但如果区域交迭的话则结果不可预知。
注: 因为调色板图像限制(255+1 种颜色)有个问题。重采样或过滤图像通常需要多于 255 种颜色,计算新的被重采样的像素及其颜色时采用了一种近似值。对调色板图像尝试分配一个新颜色时,如果失败我们选择了计算结果最接近(理论上)的颜色。这并不总是视觉上最接近的颜色。这可能会产生怪异的结果,例如空白(或者视觉上是空白)的图像。要跳过这个问题,请使用真彩色图像作为目标图像,例如用 imagecreatetruecolor() 创建的。
注: imagecopyresampled() 需要 GD 2.0.l 或更高版本。
一个简单的示例:

代码如下:

  1. <?php
  2. // The file
  3. $filename = 'test.jpg';
  4. $percent = 0.5;
  5. // Content type
  6. header('Content-Type: image/jpeg');
  7. // Get new dimensions
  8. list($width, $height) = getimagesize($filename);
  9. $new_width = $width * $percent;
  10. $new_height = $height * $percent;
  11. // Resample
  12. $image_p = imagecreatetruecolor($new_width, $new_height);
  13. $image = imagecreatefromjpeg($filename);
  14. imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
  15. // Output
  16. imagejpeg($image_p, null, 100);
  17. ?>


示例2:

  1. <?php
  2. // The file
  3. $filename = 'test.jpg';
  4. // Set a maximum height and width
  5. $width = 200;
  6. $height = 200;
  7. // Content type
  8. header('Content-Type: image/jpeg');
  9. // Get new dimensions
  10. list($width_orig, $height_orig) = getimagesize($filename);
  11. $ratio_orig = $width_orig/$height_orig;
  12. if ($width/$height > $ratio_orig) {
  13. $width = $height*$ratio_orig;
  14. } else {
  15. $height = $width/$ratio_orig;
  16. }
  17. // Resample
  18. $image_p = imagecreatetruecolor($width, $height);
  19. $image = imagecreatefromjpeg($filename);
  20. imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
  21. // Output
  22. imagejpeg($image_p, null, 100);
  23. ?>


有两种改变图像大小的方法:
ImageCopyResized() 函数在所有GD版本中有效,但其缩放图像的算法比较粗糙。
ImageCopyResamples(),其像素插值算法得到的图像边缘比较平滑。(但该函数的速度比 ImageCopyResized() 慢)。
两个函数的参数是一样的,如下:

代码如下:

  1. imageCopyResampled(dest,src,dy,dx,sx,sy,dw,dh,sw,sh);
  2. imageCopyResized(dest,src,dy,dx,sx,sy,dw,dh,sw,sh);


例子:

  1. <?PHP
  2. $src = ImageCreateFromJPEG('php.jpg');
  3. $width = ImageSx($src);
  4. $height = ImageSy($src);
  5. $x = $widht/2;
  6. $y = $height/2;
  7. $dst = ImageCreateTrueColor($x,$y);
  8. ImageCopyResampled($dst,$src,0,0,0,0,$x,$y,$widht,$height);
  9. header('Content-Type : image/png');
  10. ImagePNG($det);
  11. ?>


在php中如何改变jpg图像文件的尺寸大小

代码如下:

  1. <?
  2. function resize_jpg($img,$w,$h){
  3. // $thumb = imagecreate ($w, $h);
  4. $image = imagecreatefromjpeg($img);
  5. $imagedata = getimagesize($img);
  6. if ($h = "auto") $h = $w/($imagedata[0]/$imagedata[1]);//根据原图的纵横比得出高度!
  7. $thumb = imagecreatetruecolor ($w, $h);
  8. imagecopyresized ($thumb, $image, 0, 0, 0, 0, $w, $h, $imagedata[0], $imagedata[1]);
  9. imagejpeg($thumb);
  10. }
  11. //resize_jpg($file,$w,$h);
  12. resize_jpg("images/dsc01244.jpg",100,100);
  13. imagedestory($thumb);
  14. imagedestory($image);
  15. ?>


函数代码:

  1. <?php
  2. /*
  3. * 图片缩略图
  4. * $srcfile 来源图片,
  5. * $rate 缩放比,默认为缩小一半,或者具体宽度象素值
  6. * $filename
输出图片文件名jpg * 例如: resizeimage("zt32.gif",0.1); * 例如: resizeimage("zt32.gif",250 ); * 说明:调用时直接把函数的结果放在HTML文件IMG标签中的SRC属性里 */ function resizeimage($srcfile,$rate=.5, $filename = "" ){ $size=getimagesize($srcfile); switch($size[2]){ case 1: $img=imagecreatefromgif($srcfile); break; case 2: $img=imagecreatefromjpeg($srcfile); break; case 3: $img=imagecreatefrompng($srcfile); break; default: exit; } //源图片的宽度和高度 $srcw=imagesx($img); $srch=imagesy($img); //目的图片的宽度和高度 if($size[0] <= $rate || $size[1] <= $rate){ $dstw=$srcw; $dsth=$srch; }else{ if($rate <= 1){ $dstw=floor($srcw*$rate); $dsth=floor($srch*$rate); }else { $dstw=$rate; $rate = $rate/$srcw; $dsth=floor($srch*$rate); } } //echo "$dstw,$dsth,$srcw,$srch "; //新建一个真彩色图像 $im=imagecreatetruecolor($dstw,$dsth); $black=imagecolorallocate($im,255,255,255); imagefilledrectangle($im,0,0,$dstw,$dsth,$black); imagecopyresized($im,$img,0,0,0,0,$dstw,$dsth,$srcw,$srch); // 以 JPEG 格式将图像输出到浏览器或文件 if( $filename ) { //图片保存输出 imagejpeg($im, $filename ); }else { //图片输出到浏览器 imagejpeg($im); } //释放图片 imagedestroy($im); imagedestroy($img); } ?>

以上就是php中如何改变图片大小的实例分析的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行