我是靠谱客的博主 尊敬麦片,最近开发中收集的这篇文章主要介绍php image处理,php 图形处理函数imagetype,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

php教程 图形处理函数imagetypes() imagecreatetruecolor() imagecreate()

//判断当前的gd库是否支持png

if(imagetypes() & img_png)

{

echo "png support is enabled";

}

else

{

echo "png support is disabled";

}

/*

int imagetypes ( void )

本函数以比特字段方式返回与当前 php 版本关联的 gd 库所支持的图像格式。将返回以下结果,img_gif | img_jpg | img_png | img_wbmp| img_xpm。 例如要检查是否支持 png

*/

//创建图像

$img=imagecreatetruecolor(300,200);

//取得图像宽度

echo imagesx($img);

/*

看个实例

*/

//建立一幅 100x30 的图像

$im=imagecreate(100,30);

//白色背景和蓝色文本

$bg=imagecolorallocate($im,255,255,255);

$textcolor=imagecolorallocate($im,0,0,255);

//把字符串写在图像左上角

imagestring($im,5,0,0,"hello world!",$textcolor);

//输出图像

header("content-type: image/png");

imagepng($im);

/*

如果你想创建一个png图像*透明*,其中的背景是完全透明的,所有行动发生在借鉴,除此之外,然后执行下列操作:

*/

$png = imagecreatetruecolor(800, 600);

imagesavealpha($png, true);

$trans_colour = imagecolorallocatealpha($png, 0, 0, 0, 127);

imagefill($png, 0, 0, $trans_colour);

$red = imagecolorallocate($png, 255, 0, 0);

imagefilledellips教程教程e($png, 400, 300, 400, 300, $red);

header("content-type: image/png");

imagepng($png);

最后

以上就是尊敬麦片为你收集整理的php image处理,php 图形处理函数imagetype的全部内容,希望文章能够帮你解决php image处理,php 图形处理函数imagetype所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部