使用 PHP GD 合并两个图像 (.JPG)
我找不到解决办法。我想给这张图片添加 20px 的空白: http://img233.imageshack.us/img233/419/78317401.jpg
然后将此水印粘贴在底部(空白处)
所以输出将是:
http://img252.imageshack.us/img252/4554/wynik.jpg
我不知道不想拉伸它。
编辑
是用 WIdeImage 做的。简单。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1)使用
http://www.php.net/manual/en/function.imagecreatefromjpeg 加载两个图像。 php
2) 使用
http://www.php.net/manual/en/function.imagesy.php
http://www.php.net/manual/en/function.imagesx.php
3) 创建更大的高度+20
http://www.php.net/manual/en/function.imagecreatetruecolor.php
4) 复制第一个图像和第二个图像到较大的图像
http://www.php.net/manual/en /function.imagecopy.php
5) 保存
http://www.php.net/manual/en/function.imagejpeg.php
6) 完成
1) Load both images with
http://www.php.net/manual/en/function.imagecreatefromjpeg.php
2) Get 1st image height and width with
http://www.php.net/manual/en/function.imagesy.php
http://www.php.net/manual/en/function.imagesx.php
3) Create larger image with height+20
http://www.php.net/manual/en/function.imagecreatetruecolor.php
4) Copy the first image and the second image to the larger image
http://www.php.net/manual/en/function.imagecopy.php
5) Save it
http://www.php.net/manual/en/function.imagejpeg.php
6) Done
尝试宽图像 API http://wideimage.sourceforge.net/
看看他们的这个演示之一可能对您有帮助
合并并
调整大小
Try wide image api http://wideimage.sourceforge.net/
Check out one of their this demo may be that help you
Merge and
Resize