标题: php imagecopy ? 拷贝图像的一部分 [打印本页]
作者: fangzhen 时间: 2011-2-9 23:41 标题: php imagecopy ? 拷贝图像的一部分
bool imagecopy ( resource $dst_im , resource $src_im , int $dst_x , int $dst_y , int $src_x , int $src_y , int $src_w , int $src_h )
将 src_im 图像中坐标从 src_x,src_y 开始,宽度为 src_w,高度为 src_h 的一部分拷贝到 dst_im 图像中坐标为 dst_x 和 dst_y 的位置上。
<?php
//图片路径
$link= "test1.jpg";
$img = imagecreatefromjpeg($link);
list($width, $height, $type, $attr) = getimagesize($link);
$maxW=$width;
$maxH=$height - 40;
$iOut = imagecreatetruecolor ($maxW,$maxH);
//只剪切一个开始部位的小图.复制图片的一部分
imagecopy($iOut,$img,0,0,0,40,$maxW,$maxH);
imagejpeg($iOut,"sm.jpg");
?>
欢迎光临 PHP开发笔记 (http://phpvi.com/) |
Powered by Discuz! 6.1.0 |