码迷,mamicode.com
首页 > 其他好文 > 详细

装逼图片旋转合成demo

时间:2017-03-20 20:54:17      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:混合   分享   false   log   代码   ble   sample   覆盖   技术   

测试背景 bg.jpg

技术分享

测试图片 a.jpg

技术分享

结果示例

技术分享

代码demo

 1 <?php
 2 
 3 $bgImgFileName = ‘bg.jpg‘;
 4 $a = ‘a.jpg‘;
 5 
 6 // 初始化
 7 $src = imagecreatefromjpeg($a);
 8 list ($w, $h) = getimagesize($a);
 9 
10 // 创建画布
11 $image = imagecreatetruecolor($w, $h);
12 $bgcolor = imagecolorallocatealpha($image, 255, 255, 255, 127);//拾取一个完全透明的颜色,不要用imagecolorallocate拾色
13 imagealphablending($image , false);//关闭混合模式,以便透明颜色能覆盖原画板
14 imagefill($image , 0 , 0 , $bgcolor);//填充
15 imagesavealpha($image , true);
16 
17 // 载入小图
18 imagecopyresampled($image, $src, 0, 0, 0, 0, $w, $h, $w, $h);
19 imagedestroy($src);
20 
21 // 旋转
22 $white = imagecolorallocatealpha($image, 255, 255, 255, 127);
23 $image = imagerotate($image, 30, $white);
24 
25 // 存储临时文件
26 $b = ‘b.png‘;
27 imagepng($image, $b);
28 imagedestroy($image);
29 list ($w, $h) = getimagesize($b);
30 
31 // 打水印
32 $bg = imagecreatefromjpeg($bgImgFileName);
33 $image = imagecreatefrompng($b);
34 imagecopyresampled($bg, $image, 50, 50, 0, 0, $w, $h, $w, $h);
35 imagedestroy($image);
36 
37 // 输出
38 header(‘Content-Type: image/jpg‘);
39 imagejpeg($bg);
40 imagedestroy($bg);

 

装逼图片旋转合成demo

标签:混合   分享   false   log   代码   ble   sample   覆盖   技术   

原文地址:http://www.cnblogs.com/chanAndy/p/6591353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!