使用 PHP 裁剪图像
Posted
技术标签:
【中文标题】使用 PHP 裁剪图像【英文标题】:Cropping images with Php 【发布时间】:2013-07-24 10:32:32 【问题描述】:我正在使用 Jquery 插件 ImgAreaSelect 和 php 5.3.9 和 GD 2.0.34。
根据插件中的一些示例,我添加了一个表单,它给出了 X 和 Y 值,从我开始选择图像直到选择结束。
一切正常,因为我正确接收了值,但我无法裁剪图像。遵循了一些示例/教程,但总是失败。
这是我的 PHP 代码:
$x1 = $_POST['x1']; //this one gives me the point where start to crop
$x2 = $_POST['x2']; //the end of X axis
$y1 = $_POST['y1']; //same for Y1 and Y2
$y2 = $_POST['y2'];
$w = $x2 - $x1; //getting the width for the new image
$h = $y2 - $y1; //getting the height for the new image
$src_img = "path/image";
$format = end(explode(".", $src_img)); //taking the image format (jpg, png, gif)
$size = getimagesize($src_img);
switch($format)
case "jpg":
$copy = imagecreatefromjpeg($src_img);
$new = ImageCreateTrueColor($w, $h);
imagecopyresampled($new, $copy, 0, 0, $x1, $y1, $w, $h, $size[0], $size[1]);
header('Content-type: image/jpeg');
imagejpeg($new);
break;
我想知道是否有问题(很可能)。
感谢大家并花时间提供帮助。
【问题讨论】:
开关的拼写???? 我错了,但不,不是这样,我是手动输入的,我打错了。 好的..所以它会给出一些错误吗?还是只是调整图像的大小? @Deepanshu 我刚刚评论了标题行,正如你所说,它调整了图像的大小。 是 $src_img = "路径/图像";对吗? 【参考方案1】:imagecopyresampled($new, $copy, $x1, $y1, 0, 0, $w, $h, $size[0], $size[1]);
http://php.net/manual/en/function.imagecopyresampled.php
换句话说,imagecopyresampled() 将从位置 (src_x,src_y) 的 src_image 宽度为 src_w 和高度为 src_h 的矩形区域中取出一个矩形区域,并将其放置在宽度为 dst_w 的 dst_image 矩形区域中,并且位置 (dst_x,dst_y) 处的高度 dst_h。
也就是说,你需要把它改成:
imagecopyresampled($new, $copy,0 ,0 ,$x1, $y1, $w, $h, $w, $h);
【讨论】:
也谢谢你,唯一的问题是 $x 和 $y 在 0, 0 值之后,现在可以正常工作了。谢谢! @Ardilla:哎呀,我的错 :)【参考方案2】:无论如何你也可以试试这段代码
<?php
$x1 = $_POST['x1']; //this one gives me the point where start to crop
$x2 = $_POST['x2']; //the end of X axis
$y1 = $_POST['y1']; //same for Y1 and Y2
$y2 = $_POST['y2'];
$w = ( $x2 - $x1 ); //getting the width for the new image
$h = ( $y2 - $y1 ); //getting the height for the new image
$src = "path_to_file";
$info = getimagesize( $src );
switch( $info[2] )
case IMAGETYPE_JPEG:
$copy = imagecreatefromjpeg( $src );
$new = imagecreatetruecolor( $w, $h );
imagecopyresampled( $new, $copy, 0, 0, $x1, $y1, $info[0], $info[1], $w, $h );
header( 'Content-type: image/jpeg' );
imagejpeg( $new );
break;
default:
break;
?>
【讨论】:
【参考方案3】://resize and crop image by center
function resize_crop_image($max_width, $max_height, $source_file, $dst_dir, $quality = 80)
$imgsize = getimagesize($source_file);
$width = $imgsize[0];
$height = $imgsize[1];
$mime = $imgsize['mime'];
switch($mime)
case 'image/gif':
$image_create = "imagecreatefromgif";
$image = "imagegif";
break;
case 'image/png':
$image_create = "imagecreatefrompng";
$image = "imagepng";
$quality = 7;
break;
case 'image/jpeg':
$image_create = "imagecreatefromjpeg";
$image = "imagejpeg";
$quality = 80;
break;
default:
return false;
break;
$dst_img = imagecreatetruecolor($max_width, $max_height);
$src_img = $image_create($source_file);
$width_new = $height * $max_width / $max_height;
$height_new = $width * $max_height / $max_width;
//if the new width is greater than the actual width of the image, then the height is too large and the rest cut off, or vice versa
if($width_new > $width)
//cut point by height
$h_point = (($height - $height_new) / 2);
//copy image
imagecopyresampled($dst_img, $src_img, 0, 0, 0, $h_point, $max_width, $max_height, $width, $height_new);
else
//cut point by width
$w_point = (($width - $width_new) / 2);
imagecopyresampled($dst_img, $src_img, 0, 0, $w_point, 0, $max_width,
Resize and crop image from center with PHP
$max_height, $width_new, $height);
$image($dst_img, $dst_dir, $quality);
if($dst_img)imagedestroy($dst_img);
if($src_img)imagedestroy($src_img);
//usage example
resize_crop_image(100, 100, "test.jpg", "test.jpg");
【讨论】:
【参考方案4】:感谢大家,@Deepanshu 给了我一个链接,我看到了一段代码,但有点奇怪:
bool imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )
最后一个$src_w
和$src_h
我不得不输入新的宽度和新的高度,而不是原始图像的宽度和高度。
所以,最终正常工作的代码是:
imagecopyresampled($new, $copy, 0, 0, $x1, $y1, $w, $h, $w, $h);
【讨论】:
没有必要像这样发表感谢,事实上请不要,除非您提供自己问题的答案。这似乎不是一个答案,所以它应该是一个评论。在 SO 上,我们通过投票和接受答案来互相感谢。以上是关于使用 PHP 裁剪图像的主要内容,如果未能解决你的问题,请参考以下文章