作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
有什么方法可以剪切现有图像的一部分,然后将结果另存为新图像(文件)?
最佳答案
imagecopy
允许您为 src 图像指定 x、y、w、h 参数。结合 imagecreatetruecolor
你应该很容易就能实现你想要的。 imagecopy
的文档中甚至有一个示例:
// Create image instances
$src = imagecreatefromgif('php.gif');
$dest = imagecreatetruecolor(80, 40);
// Copy
imagecopy($dest, $src, 0, 0, 20, 13, 80, 40);
关于php - 剪切图像的一部分(不调整大小/缩略图等),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2980145/
我是一名优秀的程序员,十分优秀!