php扩展之画图
【摘要】
<?php
//print_r(gd_info());//取得当前安装的 GD 库的信息
创建画布
/*$im=imagecreatetruecolor(300, 200);
//创建颜料
$gra...
<?php
//print_r(gd_info());//取得当前安装的 GD 库的信息
创建画布
/*$im=imagecreatetruecolor(300, 200);
//创建颜料
$gray=imagecolorallocate($im, 100,100,100);
//然后是画,,也可以是填充,
imagefill($im, 100, 100, $gray);
//保存成png图片
$a=imagepng($im,'./01.png')
//销毁
imagedestroy($a);
*/
//创建画布(要造什么格式的画布)
/*$im=imagecreatefromjpeg('./home.jpg');
//然后是造颜料,两种颜料,因为一个函数只能一种,所以两种,开始
$red=imagecolorallocate($im, 255,0,0);
$blue=imagecolorallocate($im, 0,0,255);
//然后是画线
imageline($im, 0,0,670,503,$red)
//然后是不知道
header('content-type:image/jpeg')
//header("Content-type: image/jpeg")表明请求页面的内容是jpeg格式的图像。
//然后是输出把
imagejpeg($im);//输出的是jpeg的图片呀,只有jpeg的图片才能输出呀
//销毁
imagedestroy($im);
*/
//创建一个jpg格式的画布,名字叫做home
/*$im=imagecreatefromjpeg('./home.jpg');
//然后是颜料
$blue=imagecolorallocate($im,0,0,255);
//ttf字体库。
imagettftext($im, 50, 0, 100, 100, $blue, './msyh.ttf',"宋体");
header('Content-type:image/jpeg');
//然后是输出jpeg的画布
imagejpeg($im);
imagedestroy($im);
*/
//创建画布,400*400,宽*高
/*$im=imagecreatetruecolor(400, 400);
//然后是颜料
$gray=imagecolorallocate($im,100,100,100);
$blue=imagecolorallocate($im, 0,0,255);
//然后是填充
imagefill($im, 0,0,$gray)
//然后是
imagearc($im,300,300,300,300, 45, 135, $blue);
header('Content-type:image/jpeg');
///然后输出
imagejpeg($im);*/
//是椭圆
//创建画布400*800
/*$im=imagecreatetruecolor(400, 800);
//颜料100100100
$gray=imagecolorallocate($im, 100,100,100);
//颜料00255
$blue=imagecolorallocate($im, 0,0,255);
//然后是填充
imagefill($im,0,0,$gray)
//然后是画椭圆
imageellipse($im, 200,50,200,100, $blue);
//然后是画矩形
imagerectangle($im,100,100,300,200,$blue);
*/
//画一个圆弧
//创建画布
/*$im=imagecreatetruecolor(500,500);
//然后是做颜料
$gray=imagecolorallocate($im,100,100,100);
$blue=imagecolorallocate($im,0,0,255);
//然后是填充
imagefill($im, 0,0, $gray);
//然后是画椭圆弧
imagearc($im, 200,200,200,200,45,135,$blue);
///然后是设置gd类型
header('content-type:image/jpeg')
//输出jpeg图片
imagejpeg($im);
*/
//画矩=矩形
//查创建画布
/*$im=imagecreatetruecolor(400, 800);
//然后是颜料,一种是蓝色,一种是gray色,
$gray=imagecolorallocate($im, 100,100,100);
$blue=imagecolorallocate($im, 0,0,255);
//然后是填充
imagefill($im, 0,0, $gray)
//然后是画椭圆
imageellipse($im, 200,50,200,100,$blue);
//然后是画矩形
imagerectangle($im, 100,100,300,200,$blue);
imageellipse($im, 200,300,200,200,$blue)
//然后是输出销毁类型
header('content-type:image/jpeg');
imagejpeg($im);
imagedestroy($im);
*/
/*$im=imagecreatetruecolor(400, 400);
//然后是颜料4种
$gray=imagecolorallocate($im,100,100,100);
$blue=imagecolorallocate($im,0,0,255);
$red=imagecolorallocate($im, 255,0,0);
$orange=imagecolorallocate($im,248,224,143);
//然后是把颜色填充到画布上
imagefill($im, 100,100,$gray);
//然后是画椭圆
imageellipse($im,200,200,200,200,$blue);
//然后是填充椭圆
imagefill($im, 200,200,$red);
//然后是画一个矩形直接填充
imagefilledrectangle($im, 0,100,200,200,$blue);
imagefilledellipse($im,100,80,200,100,$orange);
header('content-type:image/jpeg');
imagejpeg($im);
imagedestroy($im);
*/
//读取图片作为画布资源,就是说要
/*$small=imagecreatefrompng('./feng.png');//这个小图
//然后是判断大小
$cx=imagesx($small);//小图的宽
$cy=imagesy($small);//小图的高
//然后是两倍大画布资源
$big=imagecreate(2*$cx, 2*$cy);
//然后是设置画布的背景为100,100,100
$gray=imagecolorallocate($big, 100,100,100);
//然后是铺上大布上
imagefill($big,0,0,$gray);
*/
//验证码
/*function randName($n = 6) {
if($n <= 0) {
return '';
}
$str = 'abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ0123456789';
$str = substr(str_shuffle($str),0,$n);
return $str;
}
// 做验证码
$im = imagecreatetruecolor(80,30);
$gray = imagecolorallocate($im,30,30,30);
$red = imagecolorallocate($im,255,0,0);
imagefill($im,0,0,$gray);
imagestring($im,5,5,5,randName(4),$red);
// 输出
header('content-type: image/jpeg');
imagejpeg($im);
*/
//缩略图:意思是在一张大画布上创建一个小画布粘贴上去大画布上
//先创建获取一个png格式的图片,,,图片名叫做feng.png
/*$feng=imagecreatefrompng('./feng.png');
//然后是获取这张图片的宽高
$fx=imagesx($feng);//获取宽
$fy=imagesy($feng);//获取高
//然后是做一个1/2的小画布,,并创建出来宽额和高
$sx=$fx/2;//$sx小画布
$sy=$fy/2;//$xy小画布
//然后是先创建出小画布
$small=imagecreatetruecolor($sx, $sy);
//然后是imagecopyresampled
/*imagecopyresampled是 返回更改过的图像
也就是第一个是新创建的图片的,第二个是什么格式的图片的image
*/
/*imagecopyresampled($small, $feng, 0,0,0,0, $fx,$fy,$sx,$sy);
//作用是两张图片
//然后是判断如果
if(imagepng($small,'./xiaofeng.png'))//意思是small这张画布在不在路径当前路径下
{
echo "成功";
}
else
{
echo "失败";
}*/
//然后销毁*/
//造大图画布
/*$big=imagecreatetruecolor(2*$sx, 2*sy);
//然后是颜料
$gray=imagecolorallocate($big,100,100,100);
//然后是把1颜料进大画布里面
imagefill($big, 0,0, $gray);
//复制小图到大图上
imagecopy($big, $small, 0,0,0,0,$sx,$sy);
//然后设置字符集
header('content-type:image/jpeg');
//然后是输出了
imagejpeg($big);
//然后销毁
imagedestroy($small)
*/
//然后是水印效果
/*$big=imagecreatefromjpeg('./home.jpg');//意思是创建格式为jpg名字为home在当前路径下的画布
//然后是获取这张画布的xy宽高
$bx=imagesx($big);
$by=imagesy($big);
//然后是在创建
$small=imagecreatefrompng('./feng.png');
//然后是算出它的大小
$sx=imagesx($small);
$sy=imagesy($small)
//然后是加文字
$blue=imagecolorallocate($big,0,0,255);
//然后是加文字
imagettftext($big, 16,0,100,100,$blue,'./msyh.ttf','陈业贵爱李文');
//然后是imagecopymerge函数用于拷贝并合并图像的一部分,成功返回 TRUE ,否则返回 FALSE 。
imagecopymerge($big, 16,0,100,100,$blue,'./msth.ttf','陈业贵爱李文');
//然后是字符集
header('content-type:image/jpeg');
imagejpeg($big);
imagedestroy($big);
*/
?>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
文章来源: blog.csdn.net,作者:贵哥的编程之路(陈业贵),版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_37805832/article/details/107923918
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)