`

PHP中imagecopyresampled参数详解

    博客分类:
  • PHP
 
阅读更多

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 )

 

$dst_image:新建的图片

 

$src_image:需要载入的图片

 

$dst_x:设定需要载入的图片在新图中的x坐标

 

$dst_y:设定需要载入的图片在新图中的y坐标

 

$src_x:设定载入图片要载入的区域x坐标

 

$src_y:设定载入图片要载入的区域y坐标

 

$dst_w:设定载入的原图的宽度(在此设置缩放)

 

$dst_h:设定载入的原图的高度(在此设置缩放)

 

$src_w:原图要载入的宽度

 

$src_h:原图要载入的高度

 

 

转载自:http://yaoyoa.com/content.php?id=125

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics