gpt4 book ai didi

PHP - 使用 imagecopyresampled() 裁剪图像?

转载 作者:可可西里 更新时间:2023-11-01 12:56:09 25 4
gpt4 key购买 nike

我想使用 imagecreatetruecolor 裁剪图像,它总是裁剪它留下黑色空间,或者缩放太大。我希望图像恰好是 191px 宽和 90px 高,所以我还需要调整图像的大小以及裁剪,因为比例必须保持不变。好吧,有一些项目示例:

enter image description here

调整脚本(简化)是这样的:

$src_img=imagecreatefromjpeg($photoTemp);    
list($width,$height)=getimagesize($photoTemp);
$dst_img=imagecreatetruecolor(191, 90);
imagecopyresampled($dst_img, $src_img, 0, 0, $newImage['crop']['x'], $newImage['crop']['y'], $newImage['crop']['width'], $newImage['crop']['height'], $width, $height);

$newImage['crop'] 数组包括:

['x'] => $_POST['inp-x']
['y'] => $_POST['inp-x']
['width'] => $_POST['inp-width']
['height'] => $_POST['inp-height']

但我得到的是:

enter image description here

有人看到我做错了什么吗?

谢谢,迈克。

最佳答案

你也可以,我自己做了,还行

(x1,y1)=> 裁剪开始的地方

(x2,y2)=> 裁剪结束的地方

$filename = $_GET['imageurl'];
$percent = 0.5;

list($width, $height) = getimagesize($filename);

$new_width = $_GET['x2'] - $_GET['x1'];
$new_height = $_GET['y2'] - $_GET['y1'];

$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);

imagecopyresampled($image_p, $image, 0, 0 , $_GET['x1'] , $_GET['y1'] , $new_width, $new_height, $new_width, $new_height);

// Outputs the image
header('Content-Type: image/jpeg');
imagejpeg($image_p, null, 100);

关于PHP - 使用 imagecopyresampled() 裁剪图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4970466/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com