gpt4 book ai didi

php - 在 PHP 中裁剪图像

转载 作者:IT王子 更新时间:2023-10-29 00:17:00 26 4
gpt4 key购买 nike

我想用 PHP 裁剪图像并保存文件。我知道您应该使用 GD 库,但我不确定如何使用。有什么想法吗?

谢谢

最佳答案

您可以使用 imagecopy 裁剪图像的所需部分。命令是这样的:

imagecopy  ( 
resource $dst_im - the image object ,
resource $src_im - destination image ,
int $dst_x - x coordinate in the destination image (use 0) ,
int $dst_y - y coordinate in the destination image (use 0) ,
int $src_x - x coordinate in the source image you want to crop ,
int $src_y - y coordinate in the source image you want to crop ,
int $src_w - crop width ,
int $src_h - crop height
)

代码来自 PHP.net - 从源图像裁剪出 80x40 像素的图像

<?php
// Create image instances
$src = imagecreatefromgif('php.gif');
$dest = imagecreatetruecolor(80, 40);

// Copy
imagecopy($dest, $src, 0, 0, 20, 13, 80, 40);

// Output and free from memory
header('Content-Type: image/gif');
imagegif($dest);

imagedestroy($dest);
imagedestroy($src);
?>

关于php - 在 PHP 中裁剪图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2008911/

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